-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 796 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 796 Bytes
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
{
"name": "robot-ai",
"version": "1.0.0",
"description": "AI Robot",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "node --loader ts-node/esm src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"koa": "^2.14.2",
"koa-router": "^12.0.0",
"koa-bodyparser": "^4.4.1",
"koa-cors": "^0.0.16",
"koa-jwt": "^4.0.4",
"dotenv": "^16.3.1",
"axios": "^1.5.0",
"langchain": "^0.0.140"
},
"devDependencies": {
"@types/koa__router": "^12.0.4",
"@types/koa": "^2.13.8",
"@types/koa-router": "^7.4.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-cors": "^0.0.4",
"@types/node": "^20.6.0",
"typescript": "^5.2.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
}
}