-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 KB
/
package.json
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
{
"name": "myforms",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:check": "drizzle-kit check",
"db:push:dev": "DRIZZLE_ENV=development drizzle-kit push",
"db:studio:dev": "DRIZZLE_ENV=development drizzle-kit studio",
"db:push:staging": "DRIZZLE_ENV=staging drizzle-kit push",
"db:studio:staging": "DRIZZLE_ENV=staging drizzle-kit studio",
"db:push:prod": "DRIZZLE_ENV=production drizzle-kit push",
"db:studio:prod": "DRIZZLE_ENV=production drizzle-kit studio"
},
"dependencies": {
"@clerk/backend": "^1.21.2",
"@clerk/nextjs": "^6.5.1",
"@hello-pangea/dnd": "^17.0.0",
"@neondatabase/serverless": "^0.10.4",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@react-email/components": "^0.0.31",
"@tanstack/react-query": "^5.62.3",
"@vercel/blob": "^0.26.0",
"axios": "^1.7.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.4",
"drizzle-zod": "^0.5.1",
"lucide-react": "^0.462.0",
"motion": "^11.13.1",
"nanoid": "^5.0.9",
"next": "14.2.16",
"react": "^18",
"react-day-picker": "8.10.1",
"react-dom": "^18",
"react-email": "^3.0.4",
"recharts": "^2.15.0",
"resend": "^4.0.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"viem": "2.x",
"wagmi": "^2.13.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.28.1",
"eslint": "^8",
"eslint-config-next": "14.2.16",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
}
}