forked from stylemydomain/react-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.16 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
73
74
75
76
{
"name": "react-tutorial",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-transform-runtime": "^7.11.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.0",
"express-static-gzip": "^2.0.7",
"file-loader": "^6.0.0",
"firebase": "^7.17.1",
"firebase-admin": "^9.1.1",
"mini-css-extract-plugin": "^1.0.0",
"next": "^9.5.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"path": "^0.12.7",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-async-component": "^2.0.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.12.21",
"react-icons": "^3.10.0",
"react-lazyload": "^3.0.0",
"react-lottie": "^1.2.3",
"react-lottie-light": "^1.2.5",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack-bundle-analyzer": "^3.8.0",
"workbox-webpack-plugin": "^5.1.3",
"workbox-window": "^5.1.3"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.dev.js --mode development",
"start2": "react-scripts start",
"build": "webpack --config=webpack.config.js --mode production",
"test": "react-scripts test",
"report": "npm run build --withReport true",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}