angular/integration/platform-server/package.json
Alan Agius 950ffd001e build: remove yarn from integration tests, switch to pnpm (#63902)
This commit removes Yarn as a package manager for integration tests and migrates to pnpm. This change aims to standardize package management across the project, leveraging pnpm's efficiency and consistent behavior for dependency resolution and installation.

PR Close #63902
2025-09-18 14:39:51 +00:00

51 lines
No EOL
1.9 KiB
JSON

{
"name": "platform-server",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"#comment-1": "The below is used is for payload size checks",
"build": "ng build standalone && ng build ngmodule",
"#comment-2": "The below is used is for integration tests",
"build:ngmodule": "ng run ngmodule:build:development",
"serve:ngmodule": "node ./dist/ngmodule/server/server.mjs",
"test:ngmodule": "pnpm build:ngmodule && concurrently \"pnpm serve:ngmodule\" \"pnpm ng e2e ngmodule\" --kill-others --success first",
"build:standalone": "ng run standalone:build:development",
"serve:standalone": "node ./dist/standalone/server/server.mjs",
"test:standalone": "pnpm build:standalone && concurrently \"pnpm serve:standalone\" \"pnpm ng e2e standalone\" --kill-others --success first",
"test": "ng version && pnpm test:standalone && pnpm test:ngmodule"
},
"private": true,
"dependencies": {
"@angular/animations": "next",
"@angular/common": "next",
"@angular/compiler": "next",
"@angular/core": "next",
"@angular/forms": "next",
"@angular/platform-browser": "next",
"@angular/platform-server": "next",
"@angular/router": "next",
"@angular/ssr": "21.0.0-next.4",
"express": "~5.1.0",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.0.0-next.4",
"@angular/build": "21.0.0-next.4",
"@angular/cli": "21.0.0-next.4",
"@angular/compiler-cli": "next",
"@types/express": "^5.0.3",
"@types/jasmine": "^5.0.0",
"@types/node": "^20.14.8",
"@types/selenium-webdriver": "3.0.7",
"concurrently": "3.1.0",
"jasmine-core": "5.10.0",
"jasmine-spec-reporter": "~5.0.2",
"protractor": "^7.0.0",
"selenium-webdriver": "3.5.0",
"ts-node": "^10.9.1",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.17.0"
}