-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
112 lines (112 loc) · 3.54 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
{
"name": "vite-react-admin",
"version": "0.0.1",
"homepage": "https://vite-react-admin.vercel.app/",
"license": "MIT",
"scripts": {
"prepare": "husky install .husky",
"preinstall": "npx only-allow pnpm",
"dev": "cross-env VITE_MODE=local vite",
"build:dev": "tsc && cross-env VITE_MODE=dev vite build",
"build:test": "tsc && cross-env VITE_MODE=test vite build",
"build:prod": "tsc && cross-env VITE_MODE=prod vite build",
"preview": "pnpm build:prod && vite preview",
"lint": "pnpm lint:jsFix && pnpm lint:styleFix && pnpm lint:format",
"lint:jsFix": "eslint --ext .jsx,.js,.ts,.tsx --fix ./src",
"lint:format": "prettier --loglevel warn --write \"./src/**/*.{js,jsx,ts,tsx,css,less,md,json}\"",
"lint:styleFix": "stylelint --fix ./src/**/*?\\(.module\\).{css,less} ",
"type-check": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{md,json}": "prettier --write"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@juggle/resize-observer": "^3.3.1",
"@percy507/lokijs": "^1.6.1",
"@stitches/react": "^1.2.8",
"@tanstack/react-table": "^8.5.22",
"@tanstack/react-virtual": "3.0.0-beta.22",
"@uiw/react-watermark": "^1.0.1",
"@vercel/analytics": "^1.1.1",
"@yaireo/tagify": "^4.17.8",
"ahooks": "^3.7.8",
"ali-oss": "^6.17.1",
"antd": "^4.21.5",
"antd-mobile": "^v5.24.0",
"antd-mobile-icons": "^0.3.0",
"clsx": "^1.2.1",
"cropperjs": "^1.5.12",
"d3": "^7.6.1",
"echarts": "^5.4.3",
"framer-motion": "^7.1.0",
"html2canvas": "^1.4.1",
"jotai": "^1.6.4",
"lodash": "^4.17.21",
"mac-scrollbar": "^0.10.4",
"maptalks": "^1.0.0-beta.7",
"moment": "^2.29.1",
"nanoevents": "^7.0.1",
"nanoid": "^4.0.0",
"normalize.css": "^8.0.1",
"polylabel": "^1.1.0",
"pretty-bytes": "^6.0.0",
"qrcode.react": "^3.1.0",
"qss": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-photo-view": "^1.2.1",
"react-router-dom": "^6.22.3",
"react-use": "^17.4.0",
"react-use-measure": "^2.1.1",
"react-window": "^1.8.8",
"valtio": "^1.10.5"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/ali-oss": "^6.16.4",
"@types/d3": "^7.4.0",
"@types/maptalks": "^0.49.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-window": "^1.8.5",
"@types/yaireo__tagify": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-legacy": "^1.6.4",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"less": "^4.1.2",
"lint-staged": "^12.3.4",
"postcss-less": "^6.0.0",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.5.1",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"typescript": "4.7.3",
"vconsole": "^3.14.6",
"vite": "^2.9.13",
"vite-plugin-style-import": "^1.1.0"
}
}