mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
We recently had an unexpected size regression in the hello world tests because the CLI devkit released an RC that regressed us and the dependencies were not pinned. This change ensures that we only update dependencies like devkit deliberately, so we do not have mysterious breakages caused by other packages. PR Close #30152
51 lines
2.1 KiB
JSON
51 lines
2.1 KiB
JSON
{
|
|
"name": "cli-hello-world",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "ng build --prod --progress=false",
|
|
"e2e": "ng e2e --webdriver-update=false",
|
|
"lint": "ng lint",
|
|
"ng": "ng",
|
|
"postinstall": "webdriver-manager update --gecko=false --standalone=false $CI_CHROMEDRIVER_VERSION_ARG",
|
|
"start": "ng serve",
|
|
"pretest": "ng version",
|
|
"test": "ng test --progress=false --watch=false && yarn e2e --configuration=ci && yarn e2e --configuration=ci-production"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "file:../../dist/packages-dist/animations",
|
|
"@angular/common": "file:../../dist/packages-dist/common",
|
|
"@angular/compiler": "file:../../dist/packages-dist/compiler",
|
|
"@angular/core": "file:../../dist/packages-dist/core",
|
|
"@angular/forms": "file:../../dist/packages-dist/forms",
|
|
"@angular/platform-browser": "file:../../dist/packages-dist/platform-browser",
|
|
"@angular/platform-browser-dynamic": "file:../../dist/packages-dist/platform-browser-dynamic",
|
|
"@angular/router": "file:../../dist/packages-dist/router",
|
|
"core-js": "file:../../node_modules/core-js",
|
|
"rxjs": "file:../../node_modules/rxjs",
|
|
"tslib": "^1.9.3",
|
|
"zone.js": "file:../../node_modules/zone.js"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "0.800.0-beta.15",
|
|
"@angular/cli": "file:../../node_modules/@angular/cli",
|
|
"@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli",
|
|
"@angular/language-service": "file:../../dist/packages-dist/language-service",
|
|
"@types/jasmine": "~2.8.3",
|
|
"@types/jasminewd2": "~2.0.4",
|
|
"@types/node": "~6.0.60",
|
|
"codelyzer": "^4.3.0",
|
|
"jasmine-core": "~2.8.0",
|
|
"jasmine-spec-reporter": "~4.2.1",
|
|
"karma": "~2.0.0",
|
|
"karma-chrome-launcher": "~2.2.0",
|
|
"karma-coverage-istanbul-reporter": "^1.2.1",
|
|
"karma-jasmine": "~1.1.0",
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
|
"protractor": "file:../../node_modules/protractor",
|
|
"ts-node": "~4.1.0",
|
|
"tslint": "~5.13.0",
|
|
"typescript": "file:../../node_modules/typescript"
|
|
}
|
|
}
|