Last active
March 6, 2020 21:39
-
-
Save bogoslavskiy/4d3f4098551b5e38707a8c8c9c0b1796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"build": "tsc -p tsconfig.json", | |
"build:watch": "tsc -w -p tsconfig.json", | |
"start:dev": "NODE_ENV=development nodemon build/server.js", | |
"start:prod": "NODE_ENV=production nodemon build/server.js", | |
"start:production": "concurrently \"yarn build:watch\" \"yarn start:prod\"", | |
"start": "concurrently \"yarn build:watch\" \"yarn start:dev\"", | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment