-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
{
"name": "react-admin-tp",
"version": "1.0.0",
"description": "react-ts 后台管理系统项目模版内置菜单路由、状态管理多环境打包等工具开箱即用",
"main": "index.js",
"type": "module",
"keywords": [
"react",
"admin",
"typescript"
],
"author": "wanpan11",
"license": "ISC",
"homepage": "https://wanpan11.github.io/react-admin-tp/",
"scripts": {
"start": "vite -c ./scripts/vite.config.ts",
"build": "vite build -c ./scripts/vite.config.ts",
"dev:build": "vite build -c ./scripts/vite.config.ts -m development --minify false",
"lint": "eslint --fix --ext js,jsx,ts,tsx src/ && tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/mockjs": "^1.0.10",
"@types/node": "^18.19.24",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"cssnano": "^6.1.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^13.3.0",
"mockjs": "^1.1.0",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.4.1",
"typescript": "^4.9.5",
"vite": "^4.5.3"
},
"dependencies": {
"@ant-design/icons": "^5.3.4",
"@unocss/reset": "^0.53.6",
"ahooks": "^3.7.10",
"antd": "^5.15.3",
"axios": "^1.6.8",
"classnames": "^2.5.1",
"mobx": "^6.12.0",
"mobx-react-lite": "^3.4.3",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"bash -c tsc --noEmit"
],
"*.md": [
"prettier --write"
]
}
}