forked from ai-made-approachable/rivet-chat-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 937 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
{
"name": "rivet-chat-api",
"version": "1.0.0",
"description": "Connects any rivet graph to Chatbot UI",
"main": "rivet.ts",
"scripts": {
"build": "tsc",
"start": "node dist/api.js",
"start:prod": "NODE_ENV=production node dist/api.js",
"test": "jest"
},
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"@ironclad/rivet-node": "^1.14.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"remove": "^0.1.5",
"rivet-plugin-chromadb": "latest",
"rivet-plugin-mongodb": "latest",
"rivet-plugin-ollama": "latest"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/express": "^4.17.21",
"axios": "^1.6.7",
"concurrently": "^8.2.2",
"config": "^3.3.10",
"jest": "^29.7.0",
"typescript": "^5.3.3"
}
}