-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
94 lines (94 loc) · 2.92 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
{
"name": "react-antd-console",
"version": "1.0.0",
"type": "module",
"main": "./dist-lib/react-antd-console.js",
"module": "./dist-lib/react-antd-console.js",
"exports": {
".": {
"import": "./dist-lib/react-antd-console.js",
"require": "./dist-lib/react-antd-console.js"
}
},
"types": "./dist-lib/react-antd-console.d.ts",
"scripts": {
"start": "vite --mode localhost",
"start:force": "vite --force --mode localhost",
"build:dev": "vite build --mode dev",
"build:test": "vite build --mode test",
"build:uat": "vite build --mode uat",
"build:prod": "vite build --mode prod",
"build:lib": "vite build --mode lib",
"preview": "vite preview --mode prod",
"prepare": "husky",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx ./src",
"analysis": "vite-bundle-visualizer --mode prod",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"examples/**/*.{js,jsx,ts,tsx}": "eslint --cache --ext .js,.jsx,.ts,.tsx --max-warnings 0"
},
"dependencies": {
"@dnd-kit/core": "^6.2.0",
"@dnd-kit/sortable": "^9.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@loadable/component": "^5.16.4",
"@zhangsai/model": "^0.0.2",
"admin-search-list": "^1.0.4",
"antd": "^5.22.3",
"axios": "^1.7.8",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"echarts": "^5.5.1",
"framer-motion": "^11.13.1",
"i18next": "^24.0.5",
"immer": "^10.1.1",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-contexify": "^6.0.0",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.1.3",
"react-router-dom": "^7.0.2",
"react-router-toolset": "^0.0.6",
"react-use": "^17.5.1",
"store2": "^2.14.3"
},
"devDependencies": {
"@types/loadable__component": "^5.13.9",
"@types/node": "^22.10.1",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"less": "^4.2.1",
"lint-staged": "^15.2.10",
"mermaid": "^11.4.1",
"msw": "^2.6.6",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-svgr": "^4.3.0",
"vitepress": "^1.5.0",
"vitepress-plugin-mermaid": "^2.0.17"
},
"msw": {
"workerDirectory": [
"public"
]
}
}