-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 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
{
"name": "main-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"preview": "vite preview",
"optimize-images": "node scripts/optimize-images.mjs",
"graph": "depcruise --no-config --include-only \"^src\" --output-type dot src | dot -T svg > dependencygraph.svg"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@fontsource/albert-sans": "^5.2.5",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/react": "^6.1.20",
"@supabase/supabase-js": "^2.56.1",
"@tailwindcss/vite": "^4.1.4",
"@types/react-router-dom": "^5.3.3",
"@vercel/analytics": "^1.6.1",
"chart.js": "^4.5.1",
"embla-carousel": "^8.6.0",
"embla-carousel-auto-scroll": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"fluid-tailwindcss": "^1.0.9",
"framer-motion": "^12.7.3",
"jspdf": "^4.2.0",
"qr-code-styling": "^1.9.2",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-router": "^7.5.0",
"react-router-hash-link": "^2.4.3",
"simplebar": "^6.3.0",
"simplebar-react": "^3.3.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.4",
"tsx": "^4.20.6",
"zod": "^4.1.5",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^24.1.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-router-hash-link": "^2.4.9",
"@vitejs/plugin-react-swc": "^3.8.0",
"daisyui": "^5.1.8",
"dependency-cruiser": "^16.10.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.7.4",
"sharp": "^0.34.5",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.0"
},
"overrides": {
"minimatch": ">=10.2.1",
"ajv": ">=8.18.0"
}
}