-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 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
{
"name": "tailadmin-react",
"private": true,
"version": "2.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "biome format . --write",
"check": "biome check ."
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@hookform/resolvers": "^5.0.1",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"apexcharts": "^4.1.0",
"clsx": "^2.1.1",
"flatpickr": "^4.6.13",
"lucide-react": "^0.511.0",
"react": "^19.0.0",
"react-apexcharts": "^1.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.56.4",
"react-router": "^7.1.5",
"react-router-dom": "^7.6.1",
"tailwind-merge": "^3.0.1",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.3",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.19.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.8",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.9.0",
"biome": "^0.3.3",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.14.0",
"postcss": "^8.5.2",
"tailwindcss": "^4.0.8",
"vite": "^6.1.0",
"vite-plugin-svgr": "^4.3.0",
"zustand": "^5.0.5"
},
"overrides": {
"react-helmet-async": {
"react": "^16.8.0 || ^17 || ^18 || ^19"
},
"@react-jvectormap/core": {
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19"
},
"@react-jvectormap/world": {
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19"
}
}
}