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 #63986
37 lines
1.3 KiB
JSON
37 lines
1.3 KiB
JSON
{
|
|
"name": "angular-integration",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@angular/common": "link:./in-existing-linked-by-bazel",
|
|
"@angular/compiler": "link:./in-existing-linked-by-bazel",
|
|
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
|
|
"@angular/core": "link:./in-existing-linked-by-bazel",
|
|
"@angular/elements": "link:./in-existing-linked-by-bazel",
|
|
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
|
|
"rxjs": "^7.0.0",
|
|
"tslib": "^2.3.0",
|
|
"typescript": "5.9.2",
|
|
"zone.js": "0.15.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.28.4",
|
|
"@rollup/plugin-babel": "^6.0.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@types/jasmine": "^5.0.0",
|
|
"@types/jasminewd2": "^2.0.8",
|
|
"concurrently": "3.4.0",
|
|
"lite-server": "2.2.2",
|
|
"protractor": "^7.0.0",
|
|
"rollup": "4.50.2"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm ngc && pnpm rollup -c rollup.config.mjs",
|
|
"test": "pnpm build && concurrently \"pnpm run serve\" \"pnpm run protractor\" --kill-others --success first",
|
|
"serve": "lite-server -c e2e/browser.config.json",
|
|
"preprotractor": "tsc -p e2e",
|
|
"protractor": "protractor e2e/protractor.config.js"
|
|
},
|
|
"private": true,
|
|
"packageManager": "pnpm@10.17.0"
|
|
}
|