-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1022 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
34
35
36
37
38
{
"name": "support_channel_api",
"version": "0.0.1",
"description": "",
"main": "app.js",
"scripts": {
"swagger-gen": "node ./dist/helpers/swagger-config.js",
"build": "tsc",
"debug": "tsc && npm run swagger-gen && node --inspect=127.0.0.1:9223 dist/app.js\n",
"serve": "tsc && npm run swagger-gen && node ./dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-request-id": "^3.0.0",
"express-validator": "^7.2.1",
"mongodb": "^6.13.0",
"openai": "^4.82.0",
"redis": "^4.7.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.1.9",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"@types/uuid": "^10.0.0"
}
}