mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
Issue number: Internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> There is no Angular v17 test app. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> There is an Angular v17 test app. New overrides: - angular.json: `browserTarget` was changed to `buildTarget` and to replace `@nguniversal` with `@angular/ssr` and `@angular-devkit/build-angular` - server.ts: Replace uses of `@nguniversal` with `@angular/ssr` New change to base: - polyfills.ts: Import [changed](https://github.com/angular/angular/blob/main/CHANGELOG.md#zonejs) from `import 'zone.js/dist/zone';` (this change is supported for all versions of Angular that we support, so should be changed in the base file) All other files were duplicated from their v16 counterparts. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
70 lines
2.4 KiB
JSON
70 lines
2.4 KiB
JSON
{
|
|
"name": "ionic-angular-test-app",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"sync:build": "sh scripts/build-ionic.sh",
|
|
"sync": "sh scripts/sync.sh",
|
|
"build": "ng build --configuration production --no-progress",
|
|
"lint": "ng lint",
|
|
"serve:ssr": "node dist/test-app/server/main.js",
|
|
"build:ssr": "ng build --prod && ng run test-app:server:production",
|
|
"dev:ssr": "ng run test-app:serve-ssr",
|
|
"prerender": "ng run test-app:prerender",
|
|
"cy.open": "cypress open",
|
|
"cy.run": "cypress run",
|
|
"test": "concurrently \"npm run start -- --configuration production\" \"wait-on http-get://localhost:4200 && npm run cy.run\" --kill-others --success first",
|
|
"test.watch": "concurrently \"npm run start\" \"wait-on http-get://localhost:4200 && npm run cy.open\" --kill-others --success first"
|
|
},
|
|
"dependencies": {
|
|
"@angular/animations": "^17.0.2",
|
|
"@angular/common": "^17.0.2",
|
|
"@angular/compiler": "^17.0.2",
|
|
"@angular/core": "^17.0.2",
|
|
"@angular/forms": "^17.0.2",
|
|
"@angular/platform-browser": "^17.0.2",
|
|
"@angular/platform-browser-dynamic": "^17.0.2",
|
|
"@angular/platform-server": "^17.0.2",
|
|
"@angular/router": "^17.0.2",
|
|
"@angular/ssr": "^17.0.0",
|
|
"@ionic/angular": "^7.0.0",
|
|
"@ionic/angular-server": "^7.0.0",
|
|
"core-js": "^3.33.2",
|
|
"express": "^4.15.2",
|
|
"ionicons": "^7.2.0",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"typescript-eslint-language-service": "^4.1.5",
|
|
"zone.js": "~0.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^17.0.0",
|
|
"@angular-eslint/builder": "^17.0.0",
|
|
"@angular-eslint/eslint-plugin": "^17.0.0",
|
|
"@angular-eslint/eslint-plugin-template": "^17.0.0",
|
|
"@angular-eslint/schematics": "^17.0.0",
|
|
"@angular-eslint/template-parser": "^17.0.0",
|
|
"@angular/cli": "^17.0.0",
|
|
"@angular/compiler-cli": "^17.0.2",
|
|
"@angular/language-service": "^17.0.2",
|
|
"@types/express": "^4.17.7",
|
|
"@types/ws": "8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"concurrently": "^6.0.0",
|
|
"cypress": "^13.2.0",
|
|
"eslint": "^7.26.0",
|
|
"ts-loader": "^6.2.2",
|
|
"ts-node": "^8.3.0",
|
|
"typescript": "~5.2.2",
|
|
"wait-on": "^5.2.1",
|
|
"webpack": "^5.61.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
}
|
|
}
|