-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "genai-langchain-api",
"version": "1.0.0",
"description": "This is an Express service that provides authorization functionality and includes gen-AI features using RAG, Redis, Postgres, and Langchain.",
"scripts": {
"prestart": "node dynamic-url-config.js",
"migrate:dev": "npx prisma migrate dev",
"start": "tsx src/app.ts",
"dev": "tsx watch src/app.ts",
"postinstall": "npx prisma generate"
},
"keywords": [
"AI",
"LangChain",
"LLM",
"Express",
"RAG"
],
"author": "William Amaral",
"license": "ISC",
"dependencies": {
"@langchain/community": "^0.3.1",
"@langchain/core": "^0.3.3",
"@langchain/google-genai": "^0.1.0",
"@langchain/qdrant": "^0.1.1",
"@langchain/redis": "^0.1.0",
"@prisma/client": "5.20.0",
"@qdrant/js-client-rest": "^1.12.0",
"@types/redis": "^4.0.11",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.2",
"multer": "1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"redis": "^4.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"nodemon": "^3.1.4",
"prisma": "^5.20.0",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}