Merge pull request #56 from 4Science/package-json

Script "start:dev" fixed
This commit is contained in:
Art Lowel
2017-02-02 15:41:53 +01:00
committed by GitHub

View File

@@ -36,11 +36,12 @@
"ngc": "ngc -p tsconfig.aot.json",
"prestart": "npm run build:prod:ngc:json",
"server": "node dist/server/build.js",
"server:dev": "nodemon --debug dist/server/index.js",
"server:dev": "node dist/server/index.js",
"server:dev:watch": "nodemon --debug dist/server/index.js",
"start": "npm run server",
"start:dev": "npm run clean:prod && npm run build && npm run server",
"start:dev": "npm run clean:prod && npm run build && npm run server:dev",
"watch": "webpack -w & npm run style:watch",
"watch:dev:server": "concurrently \"npm run server:dev\" \"npm run watch\"",
"watch:dev:server": "concurrently \"npm run server:dev:watch\" \"npm run watch\"",
"watch:dev": "npm run clean:prod && npm run build && npm run watch:dev:server",
"watch:prod:server": "concurrently \"npm run server\" \"npm run watch\"",
"watch:prod": "npm run build:prod:ngc:json && npm run watch:prod:server",