use consisten naming convention for npm tasks and use npm-run-all for docker task
Showing
| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
| "name": "angular2-quickstart", | "name": "angular2-quickstart", | ||
| "version": "1.0.0", | "version": "1.0.0", | ||
| "scripts": { | "scripts": { | ||
| "start": "npm-run-all --parallel tsc:w lite", | "start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ", | ||
| "tsc": "tsc", | "tsc": "tsc", | ||
| "tsc:w": "tsc -w", | "tsc:w": "tsc -w", | ||
| "lite": "lite-server", | "lite": "lite-server", | ||
| ... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
| }, | }, | ||
| "license": "ISC", | "license": "ISC", | ||
| "dependencies": { | "dependencies": { | ||
| "angular2": "2.0.0-beta.13", | "angular2": "2.0.0-beta.14", | ||
| "systemjs": "0.19.25", | "systemjs": "0.19.25", | ||
| "es6-shim": "^0.35.0", | "es6-shim": "^0.35.0", | ||
| "reflect-metadata": "0.1.2", | "reflect-metadata": "0.1.2", | ||
| ... | @@ -22,9 +22,9 @@ | ... | @@ -22,9 +22,9 @@ |
| "zone.js": "0.6.6" | "zone.js": "0.6.6" | ||
| }, | }, | ||
| "devDependencies": { | "devDependencies": { | ||
| "lite-server": "^2.1.0", | "concurrently": "^2.0.0", | ||
| "npm-run-all": "^1.7.0", | "lite-server": "^2.2.0", | ||
| "typescript": "^1.8.9", | "typescript": "^1.8.9", | ||
| "typings": "^0.7.11" | "typings":"^0.7.12" | ||
| } | } | ||
| } | } |
Please register or sign in to comment