This commit is contained in:
Leandro Facchinetti 2020-03-18 01:01:23 -04:00
parent bb86691d29
commit 22874ecbd4
2 changed files with 3 additions and 4 deletions

2
.vscode/tasks.json vendored
View File

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

View File

@ -1,8 +1,7 @@
{
"scripts": {
"start": "node src/server.js",
"test": "tsc && prettier --check 'src/**'",
"dev:start": "concurrently \"tsc --watch\" \"nodemon lib/server.js\""
"test": "tsc && jest && prettier --check 'src/**'",
"develop": "concurrently \"tsc --watch\" \"nodemon lib/server.js\""
},
"dependencies": {
"express": "^4.17.1",