-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 835 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
{
"name": "webpack5servebugrepro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "env NODE_ENV=qa npx webpack serve --config ./webpack.config.js",
"build:qa": "env NODE_ENV=qa npx webpack --config ./webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-cli": "^6.26.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^4.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}