-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.7 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
47
48
49
50
51
52
{
"scripts": {
"start": "node -r babel-register -r babel-polyfill src/server",
"lint": "eslint src webpack bin",
"prettier": "prettier --write \"{src,webpack}/**/*.?(js|?(s)css|json)\"",
"build": "rm -rf dist && NODE_ENV=production webpack --progress --hide-modules --config webpack/build.babel.js",
"prod": "NODE_ENV=production yarn start"
},
"dependencies": {
"compression": "^1.6.2",
"express": "^4.16.2",
"history": "^4.7.2",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.18",
"material-ui-icons": "^1.0.0-beta.17",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"reactstrap": "^4.8.0",
"redux": "^3.7.0",
"redux-actions": "^2.0.3",
"redux-thunk": "^2.2.0",
"serialize-javascript": "^1.3.0",
"styled-components": "^2.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-zavatta": "^6.0.1",
"eslint-config-zavatta-react": "^2.3.0",
"prettier": "^1.7.4",
"react-hot-loader": "^3.1.1",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-stats-plugin": "^0.1.5"
},
"private": true
}