-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
{
"name": "sandbox",
"version": "1.0.0",
"scripts": {
"dev": "rm -rf dist/* && NODE_ENV=development npm-run-all --parallel watch:client watch:server",
"watch:client": "webpack-dev-server --config ./webpack.dev.client.js",
"watch:server": "webpack --config ./webpack.dev.server.js",
"start": "rm -rf dist/* && webpack --progress --config ./webpack.prod.conf.js && NODE_ENV=production node ./dist/server.js",
"eslint": "eslint 'src/**/*.js'"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cookie-dough": "^0.1.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"fetch-polyfill": "^0.8.2",
"history": "^4.7.2",
"ioredis": "^4.0.0",
"mongoose": "^5.2.7",
"postcss-nested": "^3.0.0",
"postcss-scss": "^1.0.6",
"react": "^16.5.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-api-middleware": "^2.3.0",
"redux-form": "^7.4.2",
"redux-form-validators": "^2.7.2",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.6.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cn-decorator": "^2.1.0",
"css-loader": "^0.28.11",
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mustache-express": "^1.2.6",
"nodemon": "^1.17.5",
"nodemon-webpack-plugin": "^4.0.3",
"npm-run-all": "^4.1.3",
"null-loader": "^0.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^2.1.5",
"prop-types": "^15.6.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"style-loader": "^0.21.0",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.2",
"webpack-node-externals": "^1.7.2"
}
}