2017-08-15 13:22:55 -04:00
|
|
|
{
|
|
|
|
"scripts": [
|
2017-10-30 18:39:58 -04:00
|
|
|
{ "name": "ng", "command": "ng" },
|
2020-04-15 06:46:45 -04:00
|
|
|
{ "name": "build", "command": "ng build" },
|
2017-10-30 18:39:58 -04:00
|
|
|
{ "name": "start", "command": "ng serve" },
|
|
|
|
{ "name": "test", "command": "ng test" },
|
|
|
|
{ "name": "lint", "command": "ng lint" },
|
|
|
|
{ "name": "e2e", "command": "ng e2e" },
|
2020-04-08 08:27:42 -04:00
|
|
|
{ "name": "dev:ssr", "command": "ng run angular.io-example:serve-ssr" },
|
|
|
|
{ "name": "build:ssr", "command": "ng build --prod && ng run angular.io-example:server:production" },
|
|
|
|
{ "name": "serve:ssr", "command": "node dist/server/main.js" },
|
|
|
|
{ "name": "prerender", "command": "ng run angular.io-example:prerender" }
|
2017-08-15 13:22:55 -04:00
|
|
|
],
|
|
|
|
"dependencies": [
|
2020-04-08 08:27:42 -04:00
|
|
|
"@angular/platform-server",
|
2017-10-30 18:39:58 -04:00
|
|
|
"@nguniversal/express-engine",
|
2020-04-08 08:27:42 -04:00
|
|
|
"express"
|
2017-08-15 13:22:55 -04:00
|
|
|
],
|
|
|
|
"devDependencies": [
|
2018-06-27 11:20:09 -04:00
|
|
|
"@angular-devkit/build-angular",
|
2017-10-30 18:39:58 -04:00
|
|
|
"@angular/cli",
|
2020-04-08 08:27:42 -04:00
|
|
|
"@nguniversal/builders",
|
|
|
|
"@types/express",
|
2017-10-30 18:39:58 -04:00
|
|
|
"@types/jasminewd2",
|
2018-01-18 09:36:54 -05:00
|
|
|
"jasmine-spec-reporter",
|
2017-10-30 18:39:58 -04:00
|
|
|
"karma-coverage-istanbul-reporter",
|
2020-04-08 08:27:42 -04:00
|
|
|
"ts-node"
|
2017-08-15 13:22:55 -04:00
|
|
|
]
|
|
|
|
}
|