This commit is contained in:
Leandro Facchinetti 2020-12-22 19:34:02 +00:00
parent 942b8c309c
commit 6de1da51fe
3 changed files with 7958 additions and 479 deletions

View File

@ -80,7 +80,7 @@ export const webServer = express()
}
}
)
.listen(WEB_PORT);
.listen(WEB_PORT, () => console.log(`Server started: ${BASE_URL}`));
export const emailServer = new SMTPServer({
disabledCommands: ["AUTH", "STARTTLS"],

8432
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"scripts": {
"start": "ts-node .",
"develop": "open-cli http://localhost:8000 && nodemon --ext ts --exec 'ts-node .'",
"develop": "nodemon --ext ts --exec 'ts-node .'",
"test": "prettier --check '**/*.{ts,css}' && jest",
"deploy": "pm2 deploy package.json production",
"deploy:setup": "pm2 deploy package.json production setup"
@ -36,7 +36,6 @@
"jest": "^25.2.4",
"nodemailer": "^6.4.6",
"nodemon": "^2.0.2",
"open-cli": "^6.0.1",
"prettier": "^2.0.2",
"qs": "^6.9.3",
"ts-jest": "^25.5.0"