-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.71 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.71 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
{
"name": "edusync",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@google/genai": "^1.16.0",
"@googlemaps/js-api-loader": "^1.16.10",
"@hookform/resolvers": "^5.0.1",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^6.0.1",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-alert-dialog": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.3",
"@radix-ui/react-slider": "^1.3.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.3",
"@radix-ui/react-toggle-group": "^1.1.10",
"@shadcn/ui": "^0.0.4",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-helpers-react": "^0.5.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.1",
"@tanstack/react-query": "^5.74.4",
"@tanstack/react-table": "^8.20.6",
"@types/three": "^0.171.0",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.5.0",
"axios": "^1.8.4",
"bcryptjs": "^2.4.3",
"bufferutil": "^4.0.9",
"caniuse-lite": "^1.0.30001749",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"express-rate-limit": "^8.1.0",
"html-to-image": "^1.11.13",
"leaflet": "^1.9.4",
"lucide-react": "^0.468.0",
"next": "^16.0.8",
"openai": "^5.19.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.55.0",
"react-leaflet": "^5.0.0-rc.2",
"react-markdown": "^9.0.1",
"react-remove-scroll": "^2.6.0",
"react-textarea-autosize": "^8.5.9",
"reactflow": "^11.11.4",
"recharts": "^3.1.2",
"socket.io": "^4.8.1",
"stripe": "^18.5.0",
"tailwind-merge": "^2.5.5",
"three": "^0.172.0",
"utf-8-validate": "^6.0.5",
"uuid": "^11.0.3",
"ws": "^8.18.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.15",
"@types/bcryptjs": "^2.4.6",
"@types/google.maps": "^3.58.1",
"@types/leaflet": "^1.9.20",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}