-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "hackathon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:next": "next dev --turbopack",
"dev:convex": "convex dev",
"dev:g": "pnpm generate:route & next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"generate:route": "node ./src/scripts/generate-index.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@neondatabase/serverless": "^1.0.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-nextjs": "^0.12.0",
"@types/pg": "^8.15.4",
"@types/react-sound": "^1.2.6",
"@uidotdev/usehooks": "^2.4.1",
"@xyflow/react": "^12.8.2",
"better-auth": "^1.2.10",
"class-variance-authority": "^0.7.1",
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"convex": "^1.25.4",
"drizzle-orm": "^0.41.0",
"lodash": "^4.17.21",
"lucide-react": "^0.536.0",
"motion": "^12.5.0",
"next": "15.4.4",
"openai": "^5.10.1",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-sound": "^1.2.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.3.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"biome": "^0.3.3",
"drizzle-kit": "^0.30.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
},
"volta": {
"node": "24.4.1"
}
}