-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.23 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
{
"name": "reactboilerplate",
"version": "1.0.0",
"description": "reactboilerplate for development and production",
"scripts": {
"webpack": "webpack",
"clean": "rimraf ./build/*",
"dev": "set NODE_ENV='development' & webpack-dev-server --colors",
"prod:server": "node bin/www",
"prod:client": "set NODE_ENV='production' & webpack --config prod.config.js --progress --colors ",
"build": "npm run prod:client & npm run prod:server",
"server": "nodemon bin/www",
"start": "nf start"
},
"author": "L",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.1.1",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.6",
"foreman": "^2.0.0",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.1",
"morgan": "^1.9.0",
"nodemon": "^1.14.11",
"postcss-loader": "^2.0.7",
"proptypes": "^1.1.0",
"react-focus-lock": "^1.6.4",
"react-focus-trap": "^2.5.0",
"react-redux": "^5.0.6",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"style-loader": "^0.19.1",
"svg-url-loader": "^2.3.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.17.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"connect-history-api-fallback": "^1.4.0",
"express": "^4.16.2",
"mongoose": "^5.0.1",
"react": "^16.2.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0",
"react-router-dom": "^4.2.2"
}
}