-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "blitz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --turbo",
"build": "prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"prisma": {
"schema": "src/server/db/schema.prisma"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.0",
"@ai-sdk/react": "^1.2.0",
"@clerk/nextjs": "^6.33.3",
"@posthog/ai": "^3.3.1",
"@prisma/client": "^6.5.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@react-email/components": "^0.0.32",
"@react-email/html": "^0.0.11",
"@react-email/render": "^1.0.4",
"@react-email/section": "^0.0.16",
"@react-email/text": "^0.0.11",
"@sentry/nextjs": "^8.35.0",
"@vercel/analytics": "^1.5.0",
"ai": "^4.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.471.0",
"next": "15.2.8",
"openai": "^4.87.3",
"posthog-js": "^1.234.9",
"posthog-node": "^4.11.1",
"prisma": "^6.5.0",
"react": "19.0.1",
"react-dom": "19.0.1",
"recharts": "^2.15.1",
"resend": "^4.1.1",
"server-only": "^0.0.1",
"svix": "^1.45.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.05",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}