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": [ "tasks": [
{ {
"type": "npm", "type": "npm",
"script": "dev:start", "script": "develop",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true

View File

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