-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "dropify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx ./lib/db/migrate.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.18.1",
"@heroui/button": "^2.2.19",
"@heroui/card": "^2.2.18",
"@heroui/divider": "^2.2.13",
"@heroui/input": "^2.4.19",
"@heroui/react": "^2.7.8",
"@heroui/system": "^2.4.15",
"@heroui/theme": "^2.4.15",
"@hookform/resolvers": "^5.0.1",
"@imagekit/next": "^2.1.0",
"@neondatabase/serverless": "^0.10.4",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"framer-motion": "^12.9.2",
"imagekit": "^6.0.0",
"imagekitio-next": "^1.0.1",
"lucide-react": "^0.503.0",
"next": "15.3.1",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.1",
"uuid": "^11.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"tailwindcss": "^4",
"tsx": "^4.19.4",
"typescript": "^5"
}
}