-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 772 Bytes
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
{
"name": "using-webpack-plugin-serve",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.0",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"html-webpack-plugin": "^5.6.3",
"react-refresh": "^0.17.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-plugin-serve": "^1.6.0"
},
"resolutions": {
"http-proxy-middleware": "^2.0.10",
"serialize-javascript": "^7.0.5"
},
"scripts": {
"start": "webpack --watch",
"build": "cross-env NODE_ENV=production webpack"
}
}