-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "codex_ai",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"swagger": "tsoa spec"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts",
"ignore": [
"src/api/routes.ts"
]
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@node-ts/bus-core": "^1.0.13",
"@node-ts/bus-messages": "^1.0.4",
"@tsconfig/node18": "^1.0.1",
"@types/node": "^22.5.1",
"express": "^4.19.2",
"inversify": "^6.0.2",
"langchain": "^0.2.20",
"langfuse-langchain": "^3.27.0",
"openai": "^4.67.2",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/swagger-ui-express": "^4.1.6",
"@types/ws": "^8.5.12",
"concurrently": "^8.2.2",
"morgan": "^1.10.0",
"nodemon": "^3.1.4",
"tsoa": "^6.4.0",
"typescript": "^5.5.4"
}
}