forked from HiveNexus/HiveChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "hivechat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"initdb": "npx drizzle-kit push && npm run db:seedProvider && npm run db:seedModel && npm run db:seedBot",
"db:seedModel": "tsx ./app/db/modelSeed.ts",
"db:seedProvider": "tsx ./app/db/providerSeed.ts",
"db:seedBot": "tsx ./app/db/botSeed.ts",
"lint": "next lint"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ant-design/nextjs-registry": "^1.0.1",
"@auth/drizzle-adapter": "^1.7.4",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@icon-park/react": "^1.4.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@neondatabase/serverless": "^0.10.4",
"@vercel/analytics": "^1.4.1",
"antd": "^5.23.3",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"dexie": "^4.0.11",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.4",
"emoji-mart": "^5.6.0",
"github-markdown-css": "^5.7.0",
"katex": "^0.16.21",
"lodash": "^4.17.21",
"next": "^14.2.22",
"next-auth": "^5.0.0-beta.25",
"next-intl": "^3.26.3",
"postgres": "^3.4.5",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-markdown": "^8.0.7",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tsx": "^4.19.2",
"zod": "^3.24.1",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/pg": "^8.11.11",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"drizzle-kit": "^0.30.4",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"postcss": "^8",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}