-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.13 KB
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
{
"name": "react-admin-tp",
"type": "module",
"version": "1.0.1",
"description": "react-ts 后台管理系统项目模版内置菜单路由、状态管理多环境打包等工具开箱即用",
"author": "wanpan11",
"license": "ISC",
"homepage": "https://wanpan11.github.io/react-admin-tp/",
"keywords": [
"react",
"admin",
"typescript"
],
"main": "index.js",
"scripts": {
"start": "cross-env rsbuild dev -c ./scripts/rsbuild.config.ts",
"build": "cross-env rsbuild build -c ./scripts/rsbuild.config.ts",
"dev:build": "cross-env NODE_ENV=development RSDOCTOR=true DEBUG=rsbuild rsbuild build -c ./scripts/rsbuild.config.ts -m development",
"lint": "eslint --fix && tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/cssinjs": "^2.0.1",
"@ant-design/icons": "^6.1.0",
"@wanp/use-swr-data": "^1.2.0",
"antd": "^6.1.4",
"axios": "^1.13.2",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"nanoid": "^4.0.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^6.30.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@eslint-react/eslint-plugin": "^2.5.1",
"@rsbuild/core": "^1.6.6",
"@rsbuild/plugin-babel": "^1.0.6",
"@rsbuild/plugin-less": "^1.5.0",
"@rsbuild/plugin-react": "^1.4.2",
"@rsdoctor/rspack-plugin": "^1.3.9",
"@types/lodash": "^4.17.20",
"@types/mockjs": "^1.0.10",
"@types/node": "^18.19.130",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"compression-webpack-plugin": "^11.1.0",
"cross-env": "^10.1.0",
"cssnano": "^7.1.2",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mockjs": "^1.1.0",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"bash -c tsc --noEmit"
]
}
}