-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "vector",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon",
"build": "rm -rf ./build && tsc && cp -r package*.json node_modules ./build",
"start:live": "node build/index.js"
},
"author": "sametcodes",
"license": "ISC",
"dependencies": {
"@pinecone-database/pinecone": "^0.0.14",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gpt-3-encoder": "^1.1.4",
"hnswlib-node": "^1.4.2",
"langchain": "^0.0.78",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.11",
"openai": "^3.2.1",
"throat": "^6.0.2",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@t3-oss/env-core": "^0.2.2",
"@t3-oss/env-nextjs": "^0.2.2",
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.1",
"@types/node-fetch": "^2.6.3",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
}
}