-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "contribution-pulse",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"worker": "tsx scripts/worker.ts",
"worker:nightly": "tsx scripts/nightly.ts",
"queue:process": "tsx scripts/process-supabase-queue.ts"
},
"dependencies": {
"@prisma/client": "6.5.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@supabase/ssr": "0.5.2",
"@supabase/supabase-js": "2.49.1",
"@tailwindcss/oxide-linux-x64-gnu": "^4.2.1",
"@tanstack/react-query": "^5.90.21",
"bullmq": "5.44.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"ioredis": "5.5.0",
"lucide-react": "^0.542.0",
"next": "14.2.26",
"next-themes": "^0.4.6",
"pdf-lib": "1.17.1",
"radix-ui": "^1.4.3",
"react": "18.3.1",
"react-day-picker": "^9.14.0",
"react-dom": "18.3.1",
"recharts": "2.15.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "3.24.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "20.17.23",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.6",
"autoprefixer": "10.4.20",
"postcss": "8.5.3",
"prisma": "6.5.0",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.1",
"tsx": "4.19.3",
"typescript": "5.8.2",
"vitest": "1.6.1"
}
}