-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "my-rag-chatbot-builder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:webpack": "next dev --no-turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:migrate": "dotenv -e .env -- npx prisma migrate dev",
"worker": "tsx worker/process-queue.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.916.0",
"@aws-sdk/s3-request-presigner": "^3.916.0",
"@prisma/client": "^6.18.0",
"@tanstack/react-query": "^5.90.5",
"@trpc/client": "^11.6.0",
"@trpc/next": "^11.6.0",
"@trpc/react-query": "^11.6.0",
"@trpc/server": "^11.6.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"bcryptjs": "^3.0.3",
"groq-sdk": "^0.34.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.552.0",
"next": "16.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"shadcn-ui": "^0.9.5",
"superjson": "^2.2.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.23",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"prisma": "^6.18.0",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5"
}
}