-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"type": "module",
"dependencies": {
"chalk": "^5.2.0",
"crypto-js": "^4.2.0",
"express": "^4.21.2",
"ip": "^2.0.1",
"node-cache": "^5.1.2",
"ollama": "^0.5.11",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"@langchain/core": "^0.2.21",
"@langchain/community": "^0.0.34",
"langchain": "^0.1.29",
"node-fetch": "^3.3.1"
},
"scripts": {
"dev": "nodemon server.mjs",
"build": "babel public/multiAgentUI.js --out-dir public/dist --presets=@babel/preset-react",
"prestart": "npm run build",
"watch": "babel public/multiAgentUI.js --out-dir public/dist --presets=@babel/preset-react --watch"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@types/node": "^20.11.24",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}