-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
{
"name": "serverless-rag",
"version": "0.1.0",
"private": true,
"description": "Scale-to-Zero RAG Chatbot - $0/month when idle. Built with Next.js, Gemini, and Upstash.",
"author": "Param Chaudhari",
"repository": {
"type": "git",
"url": "https://github.com/certainly-param/serverless-rag-chatbot.git"
},
"keywords": [
"rag",
"serverless",
"nextjs",
"gemini",
"upstash",
"vector-database",
"edge-computing",
"scale-to-zero",
"pdf-parsing",
"semantic-caching",
"ai-chatbot",
"typescript",
"react",
"vercel",
"retrieval-augmented-generation"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "tsx scripts/benchmark.ts",
"calculate-costs": "tsx scripts/calculate-costs.ts",
"vector-grpc:server": "tsx services/vector-grpc/server.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.10",
"@ai-sdk/react": "^3.0.44",
"@opentelemetry/api": "^1.9.0",
"@upstash/redis": "^1.36.1",
"@upstash/semantic-cache": "^1.0.5",
"@upstash/vector": "^1.2.2",
"@vercel/otel": "^2.1.0",
"ai": "^6.0.42",
"@grpc/grpc-js": "^1.11.4",
"@grpc/proto-loader": "^0.7.13",
"langfuse": "^3.0.0",
"next": "16.1.4",
"pdfjs-dist": "^5.4.530",
"react": "19.2.3",
"react-dom": "19.2.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^2.1.0"
}
}