-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 713 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 713 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
{
"name": "using-webpack-hot-middleware",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@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",
"express": "^5.2.0",
"html-webpack-plugin": "^5.6.3",
"react-refresh": "^0.17.0",
"webpack": "^5.98.0",
"webpack-dev-middleware": "^7.4.2",
"webpack-hot-middleware": "^2.26.1"
},
"scripts": {
"start": "node ./server.js",
"build": "cross-env NODE_ENV=production webpack"
}
}