-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "research-copilot",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"db:upgrade": "tsx scripts/apply-schema-upgrades.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.52",
"@ai-sdk/react": "^3.0.160",
"@neondatabase/serverless": "^1.0.2",
"ai": "^6.0.158",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next": "16.2.2",
"posthog-js": "^1.364.5",
"posthog-node": "^5.21.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"jsdom": "^29.0.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.2"
}
}