-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "react-with-webpack",
"version": "1.0.0",
"description": "React app built with Webpack and Babel",
"main": "index.js",
"scripts": {
"build": "npm run build-vendor & npm run build-apps",
"build-apps": "webpack --mode=production --config webpack.config.app.js",
"build-vendor": "webpack --mode=production --config webpack.config.vendors.js",
"server": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Anubhav Sarkar",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.1.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "^6.0.1",
"prettier": "2.3.2",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.50.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.4",
"redux": "^4.1.0"
}
}