-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.33 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.33 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
105
106
107
108
109
{
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"db:push": "prisma db push"
},
"name": "zerochat",
"dependencies": {
"@ai-sdk/gateway": "^1.0.11",
"@ai-sdk/react": "^2.0.28",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "7.2.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@shikijs/core": "^3.12.2",
"@shikijs/engine-oniguruma": "^3.12.2",
"@shikijs/langs": "^3.12.2",
"@shikijs/markdown-it": "^3.12.2",
"@shikijs/themes": "^3.12.2",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-table": "^8.21.3",
"@types/markdown-it": "^14.1.2",
"ai": "5.0.89",
"better-auth": "^1.3.34",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"exa-js": "^1.9.3",
"highlight.js": "^11.11.1",
"katex": "^0.16.22",
"lucide-react": "^0.511.0",
"markdown-it": "^14.1.0",
"marked": "^16.1.2",
"motion": "^12.23.12",
"next": "15.5.7",
"next-themes": "^0.4.6",
"pg": "^8.16.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-scroll-to-bottom": "^4.2.0",
"react-syntax-highlighter": "^15.6.1",
"react-textarea-autosize": "^8.5.9",
"recharts": "^3.1.2",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"streamdown": "^1.4.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.0",
"unified": "^11.0.5",
"use-stick-to-bottom": "^1.1.1",
"usehooks-ts": "^3.1.1",
"xss": "^1.0.15",
"zod": "^4.1.5",
"zustand": "^5.0.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-scroll-to-bottom": "^4.2.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-textarea-autosize": "^4.3.6",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"prisma": "7.2.0",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}