-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.94 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
{
"name": "d3-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:trigger": "trigger dev",
"deploy": "trigger deploy",
"tunnel": "ngrok http --url=d3-demo.ngrok.dev 3000",
"python:install-requirements": "uv pip sync requirements.txt",
"python:compile-requirements": "uv pip compile requirements.in -o requirements.txt",
"python:install-browsers": "./.venv/bin/playwright install",
"python:install": "pnpm run python:compile-requirements && pnpm run python:install-requirements",
"python:create-env": "uv venv .venv",
"db:migrate": "tsx -r dotenv/config src/lib/migrate.ts up",
"db:migrate:down": "tsx -r dotenv/config src/lib/migrate.ts down"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.4",
"@ai-sdk/openai": "1.3.3",
"@e2b/code-interpreter": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.3",
"@slack/web-api": "7.9.1",
"@trigger.dev/python": "workspace:*",
"@trigger.dev/react-hooks": "workspace:*",
"@trigger.dev/sdk": "workspace:*",
"@opentelemetry/exporter-logs-otlp-http": "0.52.1",
"@opentelemetry/exporter-trace-otlp-http": "0.52.1",
"@vercel/postgres": "^0.10.0",
"ai": "4.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.486.0",
"marked": "^4.0.18",
"nanoid": "^5.1.5",
"next": "15.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.1.0",
"tw-animate-css": "^1.2.4",
"zod": "3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.9",
"@trigger.dev/build": "workspace:*",
"@types/marked": "^4.0.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4.0.17",
"trigger.dev": "workspace:*",
"typescript": "^5"
}
}