-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
53
54
55
56
57
58
{
"name": "chatbot-api",
"version": "1.0.0",
"description": "chatbot api using node nlp",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev-win": "set NODE_ENV=development&& nodemon --watch src src/index.ts",
"dev": "pm2 start ecosystem.config.js --env development",
"prod-win": "set NODE_ENV=production&& nodemon --watch dist dist/index.js",
"prod": "pm2 start ecosystem.config.js --env production",
"build": "tsc --build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"db-migrate": "^0.11.14",
"db-migrate-mysql": "^3.0.0",
"dotenv": "^16.4.5",
"exceljs": "^4.4.0",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.10.3",
"node-cron": "^3.0.3",
"node-nlp": "^4.27.0",
"rotating-file-stream": "^3.2.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/handlebars": "^4.1.0",
"@types/ioredis": "^5.0.0",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.7",
"@types/morgan": "^1.9.9",
"@types/ms": "^0.7.34",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"@types/node-cron": "^3.0.11",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}