-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 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
{
"name": "pullsmith",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"ui:shadcn": "pnpx shadcn@latest add",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:introspect": "drizzle-kit introspect",
"clean": "rm -rf .next node_modules && rm -f pnpm-lock.yaml bun.lockb yarn.lock package-lock.json",
"setup:persistence": "tsx scripts/setup-persistence.ts"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@langchain/core": "^0.3.62",
"@langchain/langgraph": "^0.3.6",
"@langchain/langgraph-checkpoint-postgres": "^0.0.5",
"@langchain/langgraph-sdk": "^0.0.89",
"@neondatabase/serverless": "^1.0.1",
"@octokit/auth-app": "^8.0.1",
"@octokit/rest": "^22.0.0",
"@planetscale/database": "^1.19.0",
"@qdrant/js-client-rest": "^1.14.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-query": "^5.81.5",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
"@types/jsonwebtoken": "^9.0.10",
"@upstash/redis": "^1.35.1",
"@vercel/sandbox": "^0.0.13",
"ai": "^4.3.16",
"better-auth": "^1.2.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.2",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.525.0",
"ms": "^2.1.3",
"nanoid": "^5.1.5",
"next": "15.3.5",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simple-git": "^3.28.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"ts-morph": "^26.0.0",
"ws": "^8.18.3",
"zod": "^3.25.74"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@types/ms": "^2.1.0",
"@types/node": "^24.0.10",
"@types/pg": "^8.15.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.4",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.5"
}
}