-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.55 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "vite-react-template",
"version": "2.0.0",
"description": "vite-react-template",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/xinlei3166/vite-react-template.git"
},
"keywords": [
"react",
"vite",
"template",
"ant-design",
"typescript",
"monorepo"
],
"author": "君惜",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"release": "yunque-release --skipBuild",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@loadable/component": "^5.16.4",
"@packages/components": "workspace:*",
"@packages/hooks": "workspace:*",
"@packages/lib": "workspace:*",
"@packages/styles": "workspace:*",
"@packages/token": "workspace:*",
"@packages/types": "workspace:*",
"@packages/utils": "workspace:*",
"@reduxjs/toolkit": "^2.2.6",
"ahooks": "^3.8.0",
"animate.css": "^4.1.1",
"antd": "^5.19.3",
"await-to-js": "^3.0.0",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"cos-js-sdk-v5": "^1.8.3",
"dayjs": "^1.11.12",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"nanoid": "^5.0.7",
"nprogress": "^0.2.0",
"qs": "^6.12.3",
"raven-js": "^3.27.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-redux": "^9.1.2",
"react-router": "^6.25.1",
"react-router-dom": "^6.25.1",
"react-sortablejs": "^6.1.4",
"redux": "^5.0.1",
"redux-logger": "^4.0.0",
"redux-undo": "^1.1.0",
"reselect": "^5.1.1",
"sortablejs": "^1.15.2",
"wujie": "^1.0.22",
"wujie-react": "^1.0.22"
},
"devDependencies": {
"@types/loadable__component": "^5.13.9",
"@types/mockjs": "^1.0.10",
"@types/node": "^20.14.11",
"@types/nprogress": "^0.2.3",
"@types/prop-types": "^15.7.12",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/react-loadable": "^5.5.11",
"@types/redux-logger": "^3.0.13",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@unocss/postcss": "^0.61.5",
"@unocss/preset-rem-to-px": "^0.61.5",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"@yunquejs/release": "^0.1.9",
"conventional-changelog-cli": "^5.0.0",
"csstype": "^3.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"lint-staged": "^15.2.7",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"picocolors": "latest",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"simple-git-hooks": "latest",
"ssh2-sftp-client": "^10.0.3",
"tsx": "latest",
"typescript": "^5.5.4",
"unocss": "^0.61.5",
"unplugin-auto-import": "^0.18.0",
"vite": "^5.3.4",
"vite-plugin-html": "^3.2.2",
"vite-plugin-style-import": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec tsx scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": []
}
}
}