-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 951 Bytes
/
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
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build-analyze": "ANALYZE=true webpack",
"watch": "webpack --watch",
"start": "webpack serve --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"core-js": "^3.32.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@web-doctor/webpack-plugin": "^1.3.6",
"babel-loader": "^9.1.3",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.1",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"sideEffects": false,
"browserslist": [
"> 0.01%",
"not dead",
"not op_mini all"
]
}