Last active
December 12, 2017 23:21
-
-
Save anthanh/fc4b8de612f8b664ba59b9b0688a9c24 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
{ | |
"name": "angular-universal-example", | |
... | |
"scripts": { | |
"ng": "ng", | |
"start": "ng serve", | |
"start:ssr": "node dist/server.js", | |
"build": "run-s build:client build:aot build:server", | |
"build:client": "ng build -prod --build-optimizer --app 0", | |
"build:aot": "ng build --aot --app 1", | |
"build:server": "webpack -p", | |
"test": "ng test", | |
"lint": "ng lint", | |
"e2e": "ng e2e" | |
}, | |
"dependencies": {...}, | |
"devDependencies": {...} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment