-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "workbox-webpack-react",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack/webpack.prod.babel.js",
"prod": "NODE_ENV=production node server/server.prod.js",
"dev": "NODE_ENV=development node_modules/.bin/babel-node server/server.dev.js",
"lint": "eslint . --fix",
"postinstall": "webpack --config webpack/webpack.dll.babel.js",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"compression": "^1.7.1",
"crypto-js": "^3.1.9-1",
"express": "^4.16.2",
"invariant": "^2.2.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-with-socket": "^0.0.4",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"socket.io": "^2.1.1",
"workbox-sw": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.3.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"html-webpack-plugin": "^2.30.1",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-dev-server": "^2.11.1",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1",
"workbox-webpack-plugin": "^2.1.2"
},
"keywords": [
"express",
"heroku",
"prop-types",
"react",
"redux",
"workbox",
"webpack",
"babel",
"eslint"
]
}