This commit is contained in:
Leandro Facchinetti 2020-03-20 02:52:49 -04:00
parent 1fc8a342b4
commit 965fec95ac
3 changed files with 6 additions and 6 deletions

2
.vscode/tasks.json vendored
View File

@ -5,7 +5,7 @@
"tasks": [
{
"type": "npm",
"script": "develop",
"script": "start",
"group": {
"kind": "build",
"isDefault": true

View File

@ -20,7 +20,7 @@ Install [Node.js](https://nodejs.org/) and run:
```console
$ npm install
$ npm develop
$ npm start
```
The web server will be running at `http://localhost:8000` and the email server at `smtp://localhost:2525`.

View File

@ -1,7 +1,7 @@
{
"scripts": {
"test": "tsc && jest && prettier --check 'src/**'",
"develop": "concurrently \"tsc --watch\" \"nodemon lib\""
"start": "concurrently \"tsc --watch\" \"nodemon lib\"",
"test": "tsc && jest && prettier --check 'src/**'"
},
"dependencies": {
"crypto-random-string": "^3.2.0",