-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.65 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
{
"name": "thinkai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-users": "drizzle-kit generate:sqlite --out ./drizzle/migrations --breakpoints --schema=./database/drizzle-schema.ts",
"generate-chats": "drizzle-kit generate:sqlite --out ./drizzle/migrations --breakpoints --schema=./database/drizzle-chat-schema.ts",
"migrate-users": "tsx database/migrate",
"migrate-chats": "tsx database/migrate-chat",
"users:push": "drizzle-kit push:sqlite --config drizzle.config-user.ts",
"users:generate": "drizzle-kit generate:sqlite --config drizzle.config-user.ts",
"chats:generate": "drizzle-kit generate:sqlite --config drizzle.config-chat.ts",
"users:studio": "drizzle-kit studio --config drizzle.config-user.ts --host 127.0.0.1",
"chats:studio": "drizzle-kit studio --config drizzle.config-chat.ts --host 127.0.0.1"
},
"dependencies": {
"@auth/core": "^0.20.0",
"@auth/drizzle-adapter": "^0.3.14",
"@langchain/community": "^0.0.32",
"@langchain/core": "^0.1.32",
"@langchain/openai": "^0.0.14",
"@libsql/client": "0.4.3",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@uidotdev/usehooks": "^2.4.1",
"ai": "^2.2.31",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"framer-motion": "^10.18.0",
"jotai": "^2.6.2",
"langchain": "^0.1.21",
"lucide-react": "^0.309.0",
"next": "14.1.0",
"next-auth": "5.0.0-beta.4",
"next-themes": "^0.2.1",
"openai": "^4.25.0",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"resend": "^2.1.0",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/react-virtualized": "^9.21.29",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"tsx": "^4.7.0"
}
}