-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "vector-db-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.4",
"drizzle-kit": "^0.31.10",
"eslint": "^10.8.0",
"eslint-config-next": "^16.2.12",
"postcss": "^8.5.25",
"tailwindcss": "3.4.17",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"dependencies": {
"@google/genai": "^2.8.0",
"@google/generative-ai": "^0.24.1",
"@langchain/core": "^1.1.48",
"@langchain/langgraph": "^1.3.4",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"groq-sdk": "^1.2.1",
"langsmith": "^0.7.5",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"openai": "^6.42.0",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "5.4.624",
"postgres": "^3.4.9",
"react": "^19.2.7",
"react-dom": "^19.2.7"
}
}