-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.43 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:setup": "npx tsx scripts/db/createSchema.ts",
"trigger:dev": "pnpm dlx trigger.dev@latest dev",
"trigger:deploy": "npx trigger.dev@latest deploy"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@trigger.dev/sdk": "3.3.12",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.7.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/recharts": "^1.8.29",
"@upstash/redis": "^1.34.3",
"@vercel/functions": "^1.4.2",
"appwrite": "16.0.2",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.25.0",
"drizzle-orm": "^0.34.1",
"framer-motion": "^12.0.6",
"html2canvas": "^1.4.1",
"jose": "^5.9.4",
"lucide-react": "^0.452.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
"node-appwrite": "14.1.0",
"postcss": "^8.4.47",
"postgres": "^3.4.4",
"puppeteer": "^23.6.1",
"random-gradient": "^0.0.2",
"react": "^18.3.1",
"react-confetti": "^6.1.0",
"react-day-picker": "8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-qr-code": "^2.0.15",
"recharts": "^2.15.1",
"server-only": "^0.0.1",
"sonner": "^1.5.0",
"swr": "^2.3.0",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.1.6",
"trigger.dev": "^3.3.12",
"typescript": "^5.6.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@trigger.dev/build": "3.3.12",
"ts-node": "^10.9.2",
"tsx": "^4.19.1"
}
}