-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.55 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
{
"name": "pwa-boilerplate",
"version": "0.1.1",
"description": "PWA Boilerplate",
"author": "Lance Jernigan",
"keywords": [
"react",
"redux",
"react-router",
"code splitting",
"service worker",
"offline assets",
"progressive web app"
],
"scripts": {
"start": "webpack-dev-server --hot --config webpack.dev.js",
"build": "webpack --config webpack.js"
},
"main": "src/index.js",
"dependencies": {
"core-js": "^2.6.3",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"clean-webpack-plugin": "^1.0.1",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"dev-server": "^0.1.0",
"extract-css-chunks-webpack-plugin": "^4.3.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"redux-actions": "^2.6.4",
"style-loader": "^0.23.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"workbox-webpack-plugin": "^3.6.3"
}
}