-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "express-bedrock-rag",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"format": "npx @biomejs/biome format --write './src'",
"lint": "npx @biomejs/biome lint --write './src'",
"check": "npx @biomejs/biome check --write './src'",
"prepare": "husky"
},
"author": "Weldisson Araujo",
"license": "ISC",
"devDependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"@biomejs/biome": "^1.8.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"@types/swagger-ui-express": "^4.1.6",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"zod": "^3.23.8"
},
"dependencies": {
"@langchain/community": "^0.2.18",
"@langchain/core": "^0.2.15",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"langchain": "^0.2.9",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"pg": "^8.12.0",
"pgvector": "^0.2.0",
"winston": "^3.13.1"
}
}