-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "webpack-react-redux-sass",
"version": "1.0.0",
"description": "A boilerplate",
"main": "index.jsx",
"scripts": {
"lint-fix": "eslint --fix ./**",
"lint": "eslint ./**",
"build": "node --max-old-space-size=8192 --optimize-for-size --optimize_for_size node_modules/webpack/bin/webpack.js --progress --color",
"dev": "node --max-old-space-size=8192 --optimize-for-size --optimize_for_size node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --color"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.11.0",
"eslint-plugin-react": "^7.29.4",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"sass-loader": "^12.6.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"babel-preset-react": "^6.24.1",
"classnames": "^2.3.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"sass": "^1.49.9"
}
}