generated from vercel/ai-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.54 KB
/
package.json
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
105
106
107
108
109
110
111
{
"name": "ai-chatbot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "tsx lib/db/migrate && next build",
"start": "next start",
"lint": "next lint && biome lint --write --unsafe",
"lint:fix": "next lint --fix && biome lint --write --unsafe",
"format": "biome format --write",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:check": "drizzle-kit check",
"db:up": "drizzle-kit up"
},
"packageManager": "[email protected]",
"dependencies": {
"@ai-sdk/fireworks": "^0.1.8",
"@ai-sdk/google": "^1.1.1",
"@ai-sdk/openai": "1.1.9",
"@ai-sdk/xai": "^1.1.1",
"@aws-sdk/client-s3": "^3.726.0",
"@aws-sdk/s3-request-presigner": "^3.726.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/state": "^6.5.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.2",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/react-visually-hidden": "^1.1.1",
"@vercel/analytics": "^1.4.1",
"@vercel/postgres": "^0.10.0",
"ai": "4.1.17",
"bcrypt-ts": "^5.0.3",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"date-fns": "^4.1.0",
"diff-match-patch": "^1.0.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.3",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^11.16.4",
"geist": "^1.3.1",
"lucide-react": "^0.469.0",
"nanoid": "^5.0.9",
"next": "15.1.1-canary.25",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.4",
"orderedmap": "^2.1.1",
"papaparse": "^5.5.2",
"postgres": "^3.4.5",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-markdown": "^1.13.1",
"prosemirror-model": "^1.24.1",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.5.0",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.1",
"react": "19.0.0",
"react-data-grid": "7.0.0-beta.47",
"react-dom": "19.0.0",
"react-markdown": "^9.0.3",
"react-resizable-panels": "^2.1.7",
"remark-gfm": "^4.0.0",
"server-only": "^0.0.1",
"sonner": "^1.7.1",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"web-push": "^3.6.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@ban12/tailwindcss-safe-area": "^0.2.4",
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "^0.5.16",
"@types/d3-scale": "^4.0.8",
"@types/node": "^22.10.5",
"@types/papaparse": "^5.3.15",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.30.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}