forked from EvefyouFE/react-evefyou-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.64 KB
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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@ant-design/cssinjs": "^1.9.1",
"@ant-design/icons": "^5.0.1",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@emotion/css": "^11.11.0",
"@iconify/react": "^4.1.1",
"@tanstack/react-query": "^4.28.0",
"ahooks": "^3.7.6",
"antd": "^5.6.3",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"history": "^5.3.0",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"qs": "^6.11.1",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-error-boundary": "^4.0.4",
"react-intl": "^6.4.4",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"recoil": "^0.7.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@types/ramda": "^0.29.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"babel-plugin-import": "^1.13.6",
"cssnano": "^6.0.1",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.3",
"mockjs": "^1.1.0",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-preset-env": "^8.3.2",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"typescript-plugin-css-modules": "5.0.0",
"vite": "^4.4.0",
"vite-aliases": "^0.11.0",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "2.9.8",
"vite-plugin-svgr": "^2.4.0",
"vite-plugin-windicss": "^1.9.0",
"vite-tsconfig-paths": "^4.2.0",
"windicss": "^3.5.6"
},
"lint-staged": {
"*.{js,css,ts,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}