generated from DaJianWu/frontend-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.47 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
{
"name": "react-web",
"version": "1.0.0",
"description": "一个 React 的网站应用",
"keywords": [
"html",
"css",
"js",
"react",
"web"
],
"author": "wudajian",
"license": "MIT",
"main": "src/index.js",
"homepage": "https://github.com/DaJianWu/react-web#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DaJianWu/react-web.git"
},
"bugs": {
"url": "https://github.com/DaJianWu/react-web/issues"
},
"scripts": {
"start": "webpack serve --env APP_ENV=dev",
"build": "webpack build --env APP_ENV=prod",
"lint": "sh scripts/lint.sh",
"prepare": "husky install"
},
"devDependencies": {
"@ant-design/icons": "^5.4.0",
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/lodash": "^4.17.7",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dayjs": "^1.11.12",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.8.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.1",
"thread-loader": "^4.0.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"antd": "^5.20.1",
"axios": "^1.7.3",
"core-js": "^3.38.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"regenerator-runtime": "^0.14.1"
}
}