-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.2 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.2 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
{
"name": "agents-workshop",
"version": "1.0.0",
"description": "AI Agents Workshop - Building intelligent chatbots with Next.js and AI SDK",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx ultracite@latest check",
"format": "npx ultracite@latest fix",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"dependencies": {
"@ai-sdk/gateway": "^2.0.15",
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/react": "^2.0.101",
"@ai-sdk/xai": "^2.0.35",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.35.3",
"@icons-pack/react-simple-icons": "^13.7.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.57.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@vercel/analytics": "^1.3.1",
"@vercel/blob": "^0.24.1",
"@vercel/functions": "^2.0.0",
"@vercel/otel": "^1.12.0",
"ai": "^5.0.101",
"bcrypt-ts": "^5.0.2",
"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.5",
"embla-carousel-react": "^8.6.0",
"eslint-config-next": "^16.0.3",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^11.3.19",
"geist": "^1.3.1",
"katex": "^0.16.25",
"lucide-react": "^0.446.0",
"mongodb": "^7.0.0",
"nanoid": "^5.0.8",
"next": "^16.0.3",
"next-auth": "5.0.0-beta.30",
"next-themes": "^0.4.6",
"orderedmap": "^2.1.1",
"papaparse": "^5.5.2",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-markdown": "^1.13.1",
"prosemirror-model": "^1.23.0",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.4.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.34.3",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-data-grid": "7.0.0-beta.47",
"react-dom": "^19.2.0",
"react-resizable-panels": "^2.1.7",
"react-syntax-highlighter": "^15.6.6",
"server-only": "^0.0.1",
"shiki": "^3.12.2",
"sonner": "^1.5.0",
"streamdown": "^1.3.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tokenlens": "1.3.0",
"use-stick-to-bottom": "^1.1.1",
"usehooks-ts": "^3.1.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.15",
"@types/d3-scale": "^4.0.8",
"@types/node": "^22.8.6",
"@types/papaparse": "^5.3.15",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"postcss": "^8",
"tailwindcss": "^4.1.13",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"ultracite": "5.3.9"
}
}