forked from jordanQA/proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.91 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": "proto",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js --colors --display-error-details --config webpack.config.js",
"client": "node ./node_modules/webpack/bin/webpack.js --colors --display-error-details --config webpack.config.js && node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.js",
"prod": "NODE_ENV=production NODE_PATH=\"./src\" node --harmony ./babel.server",
"server": "NODE_PATH=\"./src\" node --harmony ./babel.server",
"start": "NODE_ENV=development node ./node_modules/concurrently/src/main.js --kill-others \"npm run client\" \"npm run server\""
},
"author": "",
"dependencies": {
"axios": "^0.8.1",
"babel-core": "^6.4.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bluebird": "^3.1.1",
"compression": "^1.6.0",
"express": "^4.13.3",
"handlebars": "^4.0.5",
"history": "^1.17.0",
"immutable": "^3.7.6",
"lodash": "^3.10.1",
"moment": "^2.11.1",
"morgan": "^1.6.1",
"piping": "^0.3.0",
"proxy-middleware": "^0.15.0",
"query-string": "^3.0.0",
"react": "^0.14.6",
"react-addons-pure-render-mixin": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"react-router": "^1.0.3",
"redux": "^3.0.5",
"redux-simple-router": "1.0.2",
"redux-thunk": "^1.0.3",
"reselect": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"concurrently": "^1.0.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.0",
"eslint-plugin-react": "^3.15.0",
"json-loader": "^0.5.4",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.0.1",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1",
"webpack-stats-plugin": "^0.1.1"
}
}