forked from shi-gui/react-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"serve": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"./**/*.{html,tsx,ts,js,json,md}\"",
"hooks": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"antd": "^5.6.0",
"axios": "^1.4.0",
"dayjs": "^1.11.8",
"echarts": "^5.4.2",
"i18next": "^23.2.3",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"particles-bg": "^2.5.5",
"react": "^18.2.0",
"react-countup": "^6.4.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.5",
"@types/js-cookie": "^3.0.3",
"@types/lodash": "^4.14.196",
"@types/react": "^18.0.37",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"commitlint": "^17.6.5",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.9"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
}
}