-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.68 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "webpack5-app",
"version": "1.0.8",
"description": "webpack5 app",
"main": "index.js",
"keywords": [
"webpack5, antd5.x, typescript"
],
"author": "zhangkx",
"license": "ISC",
"scripts": {
"clean": "rimraf node_modules",
"build": "cross-env NODE_ENV=production webpack --progress --mode production",
"start": "cross-env NODE_ENV=development webpack serve --progress --mode development",
"prepare": "husky install",
"preinstall": "node ./scripts/preinstall.js"
},
"lint-staged": {
"src/**/*.{js,jsx,tsx,ts}": "eslint --fix",
"**/*.{js,jsx,tsx,ts}": "prettier --write --ignore-unknown"
},
"foreground-scripts": "true",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^5.1.6",
"axios": "^0.24.0",
"core-js": "^3.24.1",
"dayjs": "^1.11.3",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"retry-axios": "^3.0.0",
"use-immer": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@svgr/webpack": "^6.3.1",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.3.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"less": "^4.1.2",
"less-loader": "^10.0.1",
"lint-staged": "^12.1.2",
"mini-css-extract-plugin": "^2.3.0",
"postcss-loader": "^6.2.1",
"prettier": "2.7.1",
"react-refresh": "^0.11.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.9.2"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 11"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mianmalife/webpack5-app.git"
},
"bugs": {
"url": "https://github.com/mianmalife/webpack5-app/issues"
},
"homepage": "https://mianmalife.github.io/webpack5-app"
}