Skip to content

Instantly share code, notes, and snippets.

@bogoslavskiy
Last active March 6, 2020 21:39
Show Gist options
  • Save bogoslavskiy/4d3f4098551b5e38707a8c8c9c0b1796 to your computer and use it in GitHub Desktop.
Save bogoslavskiy/4d3f4098551b5e38707a8c8c9c0b1796 to your computer and use it in GitHub Desktop.
{
"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