-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
{
"name": "thoth",
"version": "1.0.1",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"dev:trigger": "trigger dev",
"trigger:deploy": "trigger deploy",
"test:e2e": "playwright test",
"eval": "tsx scripts/run-evals.ts",
"eval:check": "tsx scripts/check-eval-regression.ts",
"seed:showcase": "tsx scripts/seed-showcase-review.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.79",
"@ai-sdk/google": "^3.0.79",
"@ai-sdk/groq": "^3.0.39",
"@ai-sdk/mistral": "^3.0.37",
"@ai-sdk/openai": "^3.0.65",
"@anthropic-ai/claude-agent-sdk": "^0.3.150",
"@aws-sdk/client-s3": "^3.1052.0",
"@aws-sdk/s3-request-presigner": "^3.1052.0",
"@base-ui/react": "^1.5.0",
"@clerk/mcp-tools": "^0.5.0",
"@clerk/nextjs": "^7.4.0",
"@langchain/langgraph": "^1.3.2",
"@langchain/langgraph-checkpoint-postgres": "^1.0.1",
"@mistralai/mistralai": "^2.2.1",
"@neondatabase/serverless": "^1.1.0",
"@opentelemetry/api": "^1.9.1",
"@prisma/adapter-neon": "^7.8.0",
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "^7",
"@trigger.dev/sdk": "4.4.6",
"@vercel/otel": "^2.1.2",
"ai": "^6.0.191",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-yaml": "^4.1.1",
"langfuse": "^3.38.20",
"langfuse-vercel": "^3.38.20",
"lucide-react": "^1.16.0",
"mcp-handler": "^1.1.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"pg": "^8.21.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.8.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@clerk/testing": "^2.0.32",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@trigger.dev/build": "4.4.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.7",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"prisma": "^7",
"tailwindcss": "^4",
"trigger.dev": "4.4.6",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^4.1.7"
},
"pnpm": {
"overrides": {
"@modelcontextprotocol/sdk": "^1.29.0"
}
}
}