This commit is contained in:
Leifer Mendez
2022-08-15 13:04:36 +02:00
parent 97226d78e0
commit 47f1ddfbb0
32 changed files with 2465 additions and 62 deletions

View File

@@ -6,7 +6,8 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:http": "nodemon ./src/http/index.ts",
"dev:bot": "nodemon ./src/http/index.ts",
"dev:bot": "nodemon ./src/bot/index.ts",
"dev:all": "nodemon ./src/app.ts",
"start": "node ./dist/app.js",
"build": "tsc -p ."
},
@@ -17,21 +18,28 @@
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eventemitter2": "^6.4.7",
"express": "^4.18.1",
"jest": "^28.1.3",
"node-dependency-injection": "^3.0.3",
"qr-image": "^3.2.0",
"rxjs": "^7.5.6",
"twilio": "^3.80.1",
"uuid": "^8.3.2",
"whatsapp-web.js": "^1.17.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/eventemitter2": "^4.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/qr-image": "^3.2.5",
"@types/twilio": "^3.19.3",
"@types/uuid": "^8.3.4",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}