-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.03 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
{
"name": "my-code",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --cache --write .",
"lint": "eslint . --fix",
"prepare": "husky install",
"preview": "vite preview"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,sass,less,md,json}": "prettier --write"
},
"dependencies": {
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@vitejs/plugin-react": "^4.2.1",
"antd": "^5.12.4",
"apexcharts": "^3.45.1",
"axios": "^1.6.2",
"lodash": "^4.17.21",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-router-dom": "^6.21.0",
"styled-components": "^6.1.2",
"unocss": "^0.58.0",
"vite": "^5.0.8",
"zustand": "^4.4.7"
},
"devDependencies": {
"@ant-design/cssinjs": "^1.18.1",
"@ant-design/icons": "^5.2.6",
"@faker-js/faker": "^8.1.0",
"@fullcalendar/common": "^5.11.5",
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/interaction": "^6.1.10",
"@fullcalendar/list": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.10",
"@fullcalendar/timeline": "^6.1.10",
"@iconify/react": "^4.1.1",
"@types/autosuggest-highlight": "^3.2.3",
"@types/color": "^3.0.6",
"@types/nprogress": "^0.2.3",
"@types/numeral": "^2.0.5",
"@types/ramda": "^0.29.9",
"@types/react": "^18.2.43",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/react-dom": "^18.2.17",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@unocss/preset-attributify": "^0.58.0",
"@unocss/reset": "^0.58.0",
"@unocss/transformer-attributify-jsx": "^0.58.0",
"@unocss/transformer-directives": "^0.58.0",
"@unocss/transformer-variant-group": "^0.58.0",
"ahooks": "^3.7.8",
"autoprefixer": "^10.4.16",
"autosuggest-highlight": "^3.3.4",
"color": "^4.2.3",
"dayjs": "^1.11.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"framer-motion": "^10.16.16",
"highlight.js": "^11.9.0",
"husky": "^8.0.3",
"i18next": "^23.7.11",
"i18next-browser-languagedetector": "^7.2.0",
"lint-staged": "^15.2.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"react-apexcharts": "^1.4.1",
"react-beautiful-dnd": "^13.1.1",
"react-helmet-async": "^2.0.4",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-organizational-chart": "^2.2.1",
"react-quill": "^2.0.0",
"react-use": "^17.4.2",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.69.5",
"simplebar-react": "^3.2.4",
"swr": "^2.2.4",
"typescript": "^5.2.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-tsconfig-paths": "^4.2.2"
}
}