-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
53
54
55
56
57
58
{
"name": "users-react",
"version": "1.0.0",
"description": "Project by React+Webpack",
"main": "index.js",
"scripts": {
"start": "npm run server",
"server": "node server.js",
"local": "webpack serve --open",
"build": "webpack build --config webpack.config.js",
"prod-build": "webpack build --config webpack.prod.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.6.0",
"cssnano": "^5.1.14",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"postcss-loader": "^7.0.2",
"sass": "^1.58.0",
"sass-loader": "^12.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"express": "^4.18.2",
"express-static-gzip": "^2.1.7",
"jquery": "^3.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.8.0"
},
"engines": {
"node": "14.x"
},
"browserslist": [
">0.1%",
"not dead",
"ie 11",
"ios >= 11",
"not op_mini all",
"last 3 version"
]
}