-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "bobrchat",
"version": "0.1.0",
"private": true,
"license": "BSL-1.1",
"scripts": {
"dev": "bun --bun next dev",
"build": "next build",
"start": "bun --bun next start",
"lint": "bun --bun eslint",
"lint:fix": "eslint --fix",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"db:start": "docker-compose up -d",
"db:stop": "docker-compose down",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:migrate:deploy": "bun run src/lib/db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.58",
"@ai-sdk/openai": "^3.0.41",
"@ai-sdk/react": "^3.0.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@matthew-hre/env": "^0.3.4",
"@opennextjs/cloudflare": "^1.19.4",
"@openrouter/ai-sdk-provider": "^1.2.8",
"@polar-sh/sdk": "^0.42.5",
"@radix-ui/themes": "^3.3.0",
"@streamdown/code": "^1.1.1",
"@streamdown/math": "^1.0.2",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.21",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"@workos-inc/authkit-nextjs": "^2.14.0",
"@workos-inc/widgets": "^1.8.2",
"ai": "^6.0.0",
"boring-avatars": "^2.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^1.0.0-beta.9-e89174b",
"file-type": "^21.3.0",
"input-otp": "^1.4.2",
"lucide-react": "^1.7.0",
"next": "16.2.0",
"next-themes": "^0.4.6",
"pdf-lib": "^1.17.1",
"postgres": "^3.4.7",
"prismjs": "^1.30.0",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"recharts": "3.8.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"resend": "^6.7.0",
"sonner": "^2.0.7",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@cloudflare/workers-types": "^4.20260426.1",
"@eslint-react/eslint-plugin": "^2.4.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^1.0.0-beta.9-e89174b",
"eslint": "^9",
"eslint-config-next": "^16.1.1",
"eslint-plugin-better-tailwindcss": "^3.8.0",
"eslint-plugin-format": "^1.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"wrangler": "^4.85.0"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}