-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dndwm",
"version": "0.0.1",
"description": "Dungeons & Dragons World Manager",
"main": "",
"scripts": {
"clean": "rimraf client/dist",
"build-js": "node node_modules/webpack/bin/webpack",
"build-min-js": "node node_modules/webpack/bin/webpack --optimize-minimize",
"build-css": "lessc --clean-css client/src/index.less client/dist/style.min.css",
"build": "npm run clean & npm run build-css & npm run build-js",
"test": "jest",
"watch": "npm-watch"
},
"watch": {
"build-css": {
"patterns": "client/src/*.less",
"extensions": "less"
},
"build-js": "client/src/*.js"
},
"jest": {
"scriptPreprocessor": "preprocessor.js",
"unmockedModulePathPatterns": [
"react"
]
},
"repository": {
"type": "git",
"url": "(https://github.com/roerdinkholder/dndwm.git)"
},
"author": "Hans Roerdinkholder",
"license": "ISC",
"dependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"bootstrap": "^3.3.5",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^3.1.0",
"react-router": "^1.0.0-rc3",
"redux": "^3.0.2",
"redux-thunk": "^1.0.0",
"webpack": "^1.12.2"
},
"devDependencies": {
"compression-webpack-plugin": "^0.2.0",
"jest-cli": "^0.5.10",
"less": "^2.5.3",
"less-plugin-clean-css": "^1.5.1",
"npm-watch": "0.0.1",
"redux-devtools": "^2.1.5",
"rimraf": "^2.4.3"
}
}