
Previously, the `package.json` files added as boilerplate to docs example projects of type `systemjs` were incorrect/outdated. They contained unused dependencies and npm scripts and omitted used dependencies. This is not a big issue, because these examples are not offered as live StackBlitz examples or downloadable ZIP archives, but having incorrect `package.json` files is confusing and makes it more complicated to update these examples. This commit updates the `package.json` templates for the `systemjs` docs examples and other configuration files to include used dependencies (and remove unused ones). It also removes unused npm scripts. PR Close #36015
60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"scripts": [
|
|
{ "name": "build" },
|
|
{ "name": "build:watch" },
|
|
{ "name": "serve" },
|
|
{ "name": "prestart" },
|
|
{ "name": "start" },
|
|
{ "name": "pretest" },
|
|
{ "name": "test" },
|
|
{ "name": "pretest:once" },
|
|
{ "name": "test:once" },
|
|
{ "name": "build:upgrade" },
|
|
{ "name": "serve:upgrade" },
|
|
{ "name": "build:aot" },
|
|
{ "name": "serve:aot" },
|
|
{ "name": "copy-dist-files" }
|
|
],
|
|
"dependencies": [
|
|
"@angular/animations",
|
|
"@angular/common",
|
|
"@angular/compiler",
|
|
"@angular/core",
|
|
"@angular/forms",
|
|
"@angular/platform-browser",
|
|
"@angular/platform-browser-dynamic",
|
|
"@angular/router",
|
|
"@angular/upgrade",
|
|
"rxjs",
|
|
"systemjs",
|
|
"tslib",
|
|
"zone.js"
|
|
],
|
|
"devDependencies": [
|
|
"@angular/compiler-cli",
|
|
"@types/angular",
|
|
"@types/angular-animate",
|
|
"@types/angular-mocks",
|
|
"@types/angular-resource",
|
|
"@types/angular-route",
|
|
"@types/jasmine",
|
|
"@types/jasminewd2",
|
|
"@types/node",
|
|
"concurrently",
|
|
"http-server",
|
|
"jasmine-core",
|
|
"karma",
|
|
"karma-chrome-launcher",
|
|
"karma-jasmine",
|
|
"karma-jasmine-html-reporter",
|
|
"lite-server",
|
|
"protractor",
|
|
"rollup",
|
|
"rollup-plugin-commonjs",
|
|
"rollup-plugin-node-resolve",
|
|
"rollup-plugin-uglify",
|
|
"tslint",
|
|
"typescript"
|
|
]
|
|
}
|