-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 909 Bytes
/
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
{
"name": "wakanda-ai",
"version": "0.0.0",
"private": true,
"main": "./build/index.js",
"license": "MIT",
"scripts": {
"build": "tsc --declaration --outDir dist/",
"start": "ts-node -r dotenv/config src/index.ts",
"start:dist": "npm build && node -r dotenv/config dist/index.js",
"lint": "eslint src",
"lint:fix": "npm lint --fix"
},
"dependencies": {
"@pinecone-database/pinecone": "^0.0.14",
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"langchain": "^0.0.11",
"openai": "^3.2.1",
"rimraf": "^4.1.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}