-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.85 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.85 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "collab-nextjs",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types": "tsc --noEmit",
"start:all": "pnpm exec prisma migrate deploy && pnpm exec prisma db seed && node server.js",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:generate": "prisma generate",
"prisma:seed": "prisma db seed",
"db:migrate:only": "prisma migrate dev --create-only",
"db:reset": "prisma migrate reset && prisma migrate dev",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "pnpx tsx src/lib/prisma/seed.ts"
},
"dependencies": {
"@ai-sdk/groq": "^1.1.12",
"@ai-sdk/openai": "^1.2.1",
"@ai-sdk/react": "^1.1.21",
"@ai-sdk/ui-utils": "^1.1.17",
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@hookform/resolvers": "^3.9.1",
"@next-safe-action/adapter-react-hook-form": "^1.0.13",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^6.2.1",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-alert-dialog": "^1.1.5",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-context-menu": "^2.2.4",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.2",
"@radix-ui/react-toggle-group": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/react-visually-hidden": "^1.1.2",
"@tanstack/react-table": "^8.20.6",
"@tiptap/core": "^2.11.5",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-color": "^2.11.5",
"@tiptap/extension-heading": "^2.11.5",
"@tiptap/extension-horizontal-rule": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-text-style": "^2.11.5",
"@tiptap/extension-typography": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"ai": "^4.1.47",
"bcryptjs": "^2.4.3",
"better-auth": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"lowlight": "^3.3.0",
"lucide-react": "^0.469.0",
"next": "15.2.0",
"next-safe-action": "^7.10.2",
"next-themes": "^0.4.4",
"next-zod-route": "^0.2.4",
"nextjs-toploader": "^3.7.15",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-hotkeys-hook": "^4.6.1",
"react-medium-image-zoom": "^5.2.14",
"react-resizable-panels": "^2.1.7",
"recharts": "^2.15.1",
"sonner": "^1.7.1",
"swr": "^2.3.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.5",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"postcss": "^8",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-radix-colors": "^1.4.1",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
},
"packageManager": "pnpm@10.6.5+sha256.47c8bca42b4b48534b5b1b28d573c506773937b02f68e52992fbd8269131c5c8"
}