mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
35 lines
No EOL
936 B
JSON
35 lines
No EOL
936 B
JSON
{
|
|
"name": "standalone-bootstrap",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build --configuration production",
|
|
"pretest": "ng version",
|
|
"test": "echo 'No tests specified'",
|
|
"lint": "ng lint",
|
|
"e2e": "echo 'No e2e tests specified'"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/common": "next",
|
|
"@angular/compiler": "next",
|
|
"@angular/core": "next",
|
|
"@angular/platform-browser": "next",
|
|
"@angular/router": "next",
|
|
"@angular/ssr": "21.0.0-next.4",
|
|
"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/node": "^20.14.8",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "5.9.2"
|
|
},
|
|
"packageManager": "pnpm@10.17.0"
|
|
} |