-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "question-bank",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"typegen": "dotenv npx supabase gen types typescript --project-id=$VITE_APP_PROJECT_ID --schema public > src/types/supabase.types.ts",
"test": "vitest",
"gen:types": "sh ./scripts/supabase-type-gen.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@supabase/supabase-js": "^2.54.0",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.85.2",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"lucide-react": "^0.539.0",
"react": "^19.1.1",
"react-confetti": "^6.4.0",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-router-dom": "^7.8.0",
"tailwindcss": "^4.1.11",
"uuid": "^11.1.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.0.17",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"dotenv": "^17.2.1",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"supabase": "^2.34.3",
"vite": "^7.1.0",
"vitest": "^3.2.4"
}
}