-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"scripts": {
"build": "node ./node_modules/better-npm-run build",
"lint": "eslint -c .eslintrc js",
"watch-client": "node ./node_modules/better-npm-run watch-client",
"proxy": "node ./node_modules/better-npm-run proxy",
"dev": "concurrent --kill-others \"npm run watch-client\" \"npm run proxy\"",
"configure": "node ./configure.js"
},
"betterScripts": {
"build": {
"command": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js",
"env": {
"NODE_ENV": "production"
}
},
"proxy": {
"command": "node webpack/dev-proxy.js",
"env": {
"NODE_PATH": "./js",
"NODE_ENV": "development"
}
},
"watch-client": {
"command": "node webpack/webpack-dev-server.js",
"env": {
"UV_THREADPOOL_SIZE": 100,
"NODE_PATH": "./js"
}
}
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-async-to-module-method": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-runtime": "6.6.1",
"better-npm-run": "0.0.8",
"clean-webpack-plugin": "^0.1.3",
"concurrently": "2.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-react": "^5.0.1",
"express": "^4.13.3",
"express-http-proxy": "^0.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"http-proxy": "^1.11.1",
"json-loader": "0.5.4",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"prompt": "^1.0.0",
"react-a11y": "0.3.3",
"react-hot-loader": "1.3.0",
"replace": "^0.3.0",
"strip-loader": "^0.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.9.11",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"babel": "6.5.2",
"babel-loader": "^6.2.4",
"babel-plugin-typecheck": "3.8.0",
"babel-runtime": "^6.6.1",
"bluebird": "^3.3.5",
"oc-react-components": "^0.2.0",
"react": "^15.0.2",
"react-dom": "^15.0.2"
}
}