generated from DonAdam2/webpack-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.41 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"description": "Webpack react boilerplate",
"main": "index.js",
"browserslist": [
"ie >= 11",
"last 2 version"
],
"scripts": {
"start": "webpack serve --mode=development --config buildTools/webpack.dev.js",
"build": "webpack --mode=production --config buildTools/webpack.prod.js --progress --color",
"build:serve": "serve dist --cors -p 8080",
"analyze-bundle": "webpack --mode=production --config buildTools/webpack.prod.js --json > stats.json && webpack-bundle-analyzer stats.json dist"
},
"author": "Adam Morsi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@hot-loader/react-dom": "^17.0.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"dotenv": "^9.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"mini-css-extract-plugin": "^1.5.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.13",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"purgecss-webpack-plugin": "^4.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"regenerator-runtime": "^0.13.7",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^11.0.1",
"serve": "^12.0.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.4",
"core-js": "^3.11.1",
"lodash": "^4.17.21",
"react-error-boundary": "^3.1.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-toastify": "^8.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0"
}
}