mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
- Migrates Angular test app tests from Cypress to Playwright - Resolves test TODOs with Angular 18 - Resolves nav TODO by adding in standalone components - Updates browserslist to remove warnings --------- Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com>
69 lines
2.1 KiB
JSON
69 lines
2.1 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",
|
|
"test": "npx playwright test"
|
|
},
|
|
"dependencies": {
|
|
"@angular/animations": "^20.0.0",
|
|
"@angular/common": "^20.0.0",
|
|
"@angular/compiler": "^20.0.0",
|
|
"@angular/core": "^20.0.0",
|
|
"@angular/forms": "^20.0.0",
|
|
"@angular/platform-browser": "^20.0.0",
|
|
"@angular/platform-browser-dynamic": "^20.0.0",
|
|
"@angular/platform-server": "^20.0.0",
|
|
"@angular/router": "^20.0.0",
|
|
"@angular/ssr": "^20.0.0",
|
|
"@ionic/angular": "^8.4.0",
|
|
"@ionic/angular-server": "^8.4.0",
|
|
"core-js": "^3.33.2",
|
|
"express": "^4.18.2",
|
|
"ionicons": "^8.0.13",
|
|
"rxjs": "^7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"typescript-eslint-language-service": "^4.1.5",
|
|
"zone.js": "^0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^20.0.0",
|
|
"@angular-eslint/builder": "^20.0.0",
|
|
"@angular-eslint/eslint-plugin": "^20.0.0",
|
|
"@angular-eslint/eslint-plugin-template": "^20.0.0",
|
|
"@angular-eslint/schematics": "^20.0.0",
|
|
"@angular-eslint/template-parser": "^20.0.0",
|
|
"@angular/build": "^20.0.0",
|
|
"@angular/cli": "^20.0.0",
|
|
"@angular/compiler-cli": "^20.0.0",
|
|
"@angular/language-service": "^20.0.0",
|
|
"@playwright/test": "^1.54.2",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.9.3",
|
|
"@types/ws": "8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"concurrently": "^6.0.0",
|
|
"eslint": "^8.57.0",
|
|
"ts-loader": "^6.2.2",
|
|
"ts-node": "^8.3.0",
|
|
"typescript": "^5.8.0",
|
|
"wait-on": "^8.0.1",
|
|
"webpack": "^5.61.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|