-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "titan",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@neondatabase/serverless": "^1.0.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-slot": "^1.2.2",
"@t3-oss/env-nextjs": "^0.13.4",
"@uploadthing/react": "^7.3.3",
"better-auth": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"html-to-image": "^1.11.13",
"jspdf": "^4.2.1",
"lucide-react": "^0.503.0",
"next": "^16.2.3",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-easy-crop": "^5.5.7",
"react-hook-form": "^7.56.3",
"sonner": "^2.0.3",
"tailwind-merge": "^3.3.0",
"uploadthing": "^7.7.4",
"zod": "^3.24.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.6",
"@types/node": "^20.17.47",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"drizzle-kit": "^0.31.1",
"tailwindcss": "^4.1.6",
"tw-animate-css": "^1.2.9",
"typescript": "^5.8.3"
}
}