-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "fluxy-admin-web",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx",
"preview": "vite preview",
"check-types": "tsc -b",
"prepare": "simple-git-hooks",
"analyze": "tsc -b && cross-env ANALYZE=true vite build"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@ant-design/plots": "^1.2.5",
"@ant-design/pro-components": "^2.7.15",
"@antv/g2plot": "^2.4.32",
"@dbfu/react-directive": "^1.1.4",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"ahooks": "^3.8.1",
"antd": "^5.20.2",
"antd-img-crop": "^4.23.0",
"await-to-js": "^3.0.0",
"axios": "^1.7.4",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.12",
"i18next": "^23.13.0",
"jsencrypt": "^3.3.2",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"tailwind-merge": "^2.5.2",
"tinycolor2": "^1.6.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.41",
"rollup-plugin-external-globals": "^0.12.0",
"rollup-plugin-visualizer": "^5.12.0",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.2.2",
"vite": "^5.3.4"
},
"lint-staged": {
"*.ts?(x)": [
"eslint --ext .js,.jsx --fix",
"bash -c 'npm run check-types'"
],
"*.{js,jsx}": [
"eslint --ext ts,tsx --fix"
]
},
"simple-git-hooks": {
"commit-msg": "pnpm commitlint --edit",
"pre-commit": "pnpm lint-staged"
}
}