-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.66 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.66 KB
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
{
"private": true,
"scripts": {
"build-assets-dev": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.dev.js",
"build-assets-prod": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.prod.js",
"build-server": "./node_modules/babel-cli/bin/babel.js src/ --out-dir build/",
"dev": "NODE_ENV=development ./node_modules/nodemon/bin/nodemon.js --watch ./src --require babel-register ./src/server.js 3001",
"lint": "./node_modules/eslint/bin/eslint.js src/actions",
"start": "npm run build-assets-prod && NODE_ENV=production node --require babel-register ./src/server.js 3001"
},
"dependencies": {
"babel-polyfill": "^6.9.0",
"classnames": "^2.2.5",
"express": "^4.13.4",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.12.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.10.4"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^3.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"nodemon": "^1.9.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0"
}
}