-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "docugenius-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node build/src/index.js",
"dev": "npx nodemon"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.3",
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.197",
"@types/morgan": "^1.9.5",
"@types/node": "^20.5.7",
"@types/qs": "^6.9.8",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@pinecone-database/pinecone": "^1.1.2",
"@typegoose/typegoose": "^11.5.0",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.0.175",
"lodash": "^4.17.21",
"mongoose": "^7.5.0",
"openai": "^4.4.0",
"pdf-parse": "^1.1.1",
"qs": "^6.11.2",
"redis": "^4.6.8",
"zod": "^3.22.2"
}
}