-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 867 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
{
"scripts": {
"build": "webpack --env environment=production --config webpack.config.js",
"dev": "webpack --env environment=development --config webpack.config.js",
"devserver": "webpack-dev-server --env environment=development --config webpack.config.js",
"lint": "eslint ./src"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"core-js": "^3.21.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}