-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "devils-advocate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "tsx src/lib/db/migrate.ts && tsx src/lib/db/seed.ts && next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/lib/db/seed.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.63",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/extension-link": "^3.23.1",
"@tiptap/extension-placeholder": "^3.23.1",
"@tiptap/react": "^3.23.1",
"@tiptap/starter-kit": "^3.23.1",
"ai": "^6.0.176",
"better-sqlite3": "^12.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"next-auth": "^5.0.0-beta.31",
"playwright": "^1.59.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.5.0",
"tiptap-markdown": "^0.9.0",
"tsx": "^4.21.0",
"valyu-js": "^2.7.14",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}