-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 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
{
"name": "assistant-ui-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "tsx --env-file=.env prisma/seed.ts",
"db:setup": "prisma migrate dev && npm run db:seed",
"db:sync": "prisma db push"
},
"prisma": {
"seed": "tsx --env-file=.env prisma/seed.ts"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindStylesheet": "app/globals.css"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.86",
"@ai-sdk/react": "^3.0.3",
"@assistant-ui/react": "^0.11.51",
"@assistant-ui/react-ai-sdk": "^1.1.19",
"@assistant-ui/react-markdown": "^0.11.8",
"@prisma/adapter-pg": "^7.2.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/bcryptjs": "^2.4.6",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^10.0.0",
"@vercel/blob": "^2.0.0",
"ai": "^5.0.113",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.26",
"lucide-react": "^0.561.0",
"motion": "^12.23.26",
"next": "^16.1.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.1",
"resend": "^6.6.0",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0",
"zod": "^4.3.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@prisma/client": "^7.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "^16.0.10",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.2.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"ai": "^5.0.113",
"@ai-sdk/react>ai": "^5.0.113"
}
}
}