-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 717 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
{
"name": "using-webpack-dev-server",
"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-dev-server": "^5.2.6"
},
"resolutions": {
"uuid": "^11.1.1"
},
"scripts": {
"start": "webpack serve --hot",
"build": "cross-env NODE_ENV=production webpack"
}
}