mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: internal --------- ## What is the current behavior? There are tests apps for Angular 16, 17 and 18 ## What is the new behavior? Adds a test app for Angular 19 ## Does this introduce a breaking change? - [ ] Yes - [x] No --------- Co-authored-by: Brandy Carney <6577830+brandyscarney@users.noreply.github.com>
71 lines
2.4 KiB
JSON
71 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": "^16.0.0",
|
|
"@angular/common": "^16.0.0",
|
|
"@angular/compiler": "^16.0.0",
|
|
"@angular/core": "^16.0.0",
|
|
"@angular/forms": "^16.0.0",
|
|
"@angular/platform-browser": "^16.0.0",
|
|
"@angular/platform-browser-dynamic": "^16.0.0",
|
|
"@angular/platform-server": "^16.0.0",
|
|
"@angular/router": "^16.0.0",
|
|
"@ionic/angular": "^7.0.0",
|
|
"@ionic/angular-server": "^7.0.0",
|
|
"@nguniversal/express-engine": "^16.0.0",
|
|
"core-js": "^2.6.11",
|
|
"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.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^16.0.0",
|
|
"@angular-eslint/builder": "^16.3.1",
|
|
"@angular-eslint/eslint-plugin": "^16.3.1",
|
|
"@angular-eslint/eslint-plugin-template": "^16.3.1",
|
|
"@angular-eslint/schematics": "^16.3.1",
|
|
"@angular-eslint/template-parser": "^16.0.0",
|
|
"@angular/cli": "^16.0.0",
|
|
"@angular/compiler-cli": "^16.0.0",
|
|
"@angular/language-service": "^16.0.0",
|
|
"@nguniversal/builders": "^16.0.0",
|
|
"@types/express": "^4.17.7",
|
|
"@types/node": "^12.12.54",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"concurrently": "^6.0.0",
|
|
"cypress": "^13.2.0",
|
|
"eslint": "^8.57.1",
|
|
"ts-loader": "^6.2.2",
|
|
"ts-node": "^8.3.0",
|
|
"typescript": "~5.0.2",
|
|
"wait-on": "^5.2.1",
|
|
"webpack": "^5.61.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 16"
|
|
}
|
|
}
|