-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 795 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
{
"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"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"core-js": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"redux": "^4.0.5"
}
}