-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 862 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 862 Bytes
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
{
"name": "rag-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"engines": {
"node": "22.14",
"npm": "10.9.2"
},
"scripts": {
"dev": "tsx watch src/index.ts"
},
"keywords": [],
"author": "Daniel Castro",
"license": "ISC",
"description": "",
"dependencies": {
"@langchain/community": "^1.0.0",
"@langchain/core": "^1.0.1",
"@qdrant/js-client-rest": "^1.15.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"multer": "^2.0.2",
"pdf-parse": "^1.1.1",
"uuid": "^13.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.4",
"@types/multer": "^2.0.0",
"@types/node": "^24.9.1",
"@types/pdf-parse": "^1.1.5",
"@types/uuid": "^10.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}