fix: dev mode with inspect script should run FE and BE at the same time

This commit is contained in:
Ondřej Synáček 2020-12-26 21:09:15 +01:00
parent ae700330b9
commit 9207dbd12b
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
"deploy:firebase": "npm run build:firebase:hosting && firebase deploy",
"start": "npm run build && node lib/index.js",
"start:dev": "concurrently \"npm run build:dev\" \"NODE_ENV=development PORT=3000 nodemon lib/index.js\"",
"start:dev:inspect": "npm run build:dev && NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js",
"start:dev:inspect": "concurrently \"npm run build:dev\" \"NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js\"",
"start:dev:firebase": "concurrently \"npm run build:firebase:hosting:dev\" \"NODE_ENV=development firebase emulators:start\"",
"test": "jest"
},