Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"start": "npm-run-all --parallel tsc:w lite",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"docker-build": "docker build -t ng2-quickstart .",
"docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart",
"docker:build": "docker build -t ng2-quickstart .",
"docker:run": "docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart",
"docker": "npm-run-all docker:build docker:run",
"postinstall": "typings install"
},
"license": "ISC",
Expand All @@ -21,9 +22,9 @@
"zone.js": "0.6.6"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"npm-run-all": "^1.7.0",
"typescript": "^1.8.9",
"typings":"^0.7.11"
"typings": "^0.7.11"
}
}