-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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
{
"name": "code-copilot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"preview": "next build && next start",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/google": "^1.0.15",
"@auth/core": "0.35.3",
"@auth/drizzle-adapter": "1.7.4",
"@neondatabase/serverless": "0.10.4",
"@radix-ui/react-alert-dialog": "1.1.4",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-icons": "1.3.1",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.2",
"@radix-ui/react-scroll-area": "1.2.0",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.1",
"@radix-ui/react-tooltip": "1.1.3",
"@uploadthing/react": "^7.1.5",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.3",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.3",
"ai": "^4.0.33",
"babel-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"drizzle-orm": "0.38.3",
"file-type": "^19.6.0",
"lucide-react": "0.441.0",
"marked": "^15.0.6",
"motion": "11.12.0",
"next": "15.2.0-canary.3",
"next-auth": "5.0.0-beta.25",
"next-themes": "0.3.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-intersection-observer": "9.13.1",
"react-markdown": "9.0.1",
"react-syntax-highlighter": "15.6.1",
"react-textarea-autosize": "8.5.4",
"remark-gfm": "4.0.0",
"server-only": "0.0.1",
"sonner": "1.7.0",
"swr": "2.2.5",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7",
"uploadthing": "^7.4.4",
"use-debounce": "10.0.4",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "20.17.6",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@types/react-syntax-highlighter": "15.5.13",
"drizzle-kit": "0.30.1",
"eslint": "9.14.0",
"eslint-config-next": "15.0.4",
"postcss": "8.4.48",
"prettier": "3.4.2",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"pnpm": {
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
}
}
}