mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Some checks are pending
DevInfra / assistant_to_the_branch_manager (push) Waiting to run
CI (push) / zone-js (push) Waiting to run
CI (push) / lint (push) Waiting to run
CI (push) / devtools (push) Waiting to run
CI (push) / test (push) Waiting to run
CI (push) / integration-tests (push) Waiting to run
CI (push) / adev (push) Waiting to run
CI (push) / vscode-ng-language-service (push) Waiting to run
CI (push) / publish-snapshots (push) Waiting to run
CI (push) / adev-deploy (push) Blocked by required conditions
Update ADEV Cross Repo Docs / Update Cross Repo ADEV Docs (push) Waiting to run
See associated pull request for more information.
51 lines
2.2 KiB
JSON
51 lines
2.2 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\" \"protractor e2e/protractor.conf.js\" --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\" \"protractor e2e/protractor.conf.js\" --kill-others --success first",
|
|
"test": "ng version && pnpm test:standalone && pnpm test:ngmodule"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "link:./in-existing-linked-by-bazel",
|
|
"@angular/common": "link:./in-existing-linked-by-bazel",
|
|
"@angular/compiler": "link:./in-existing-linked-by-bazel",
|
|
"@angular/core": "link:./in-existing-linked-by-bazel",
|
|
"@angular/forms": "link:./in-existing-linked-by-bazel",
|
|
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
|
|
"@angular/platform-server": "link:./in-existing-linked-by-bazel",
|
|
"@angular/router": "link:./in-existing-linked-by-bazel",
|
|
"@angular/ssr": "22.0.0-next.8",
|
|
"express": "~5.2.0",
|
|
"rxjs": "^7.0.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "0.16.1"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "22.0.0-next.8",
|
|
"@angular/build": "22.0.0-next.8",
|
|
"@angular/cli": "22.0.0-next.8",
|
|
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
|
|
"@types/express": "^5.0.3",
|
|
"@types/jasmine": "^6.0.0",
|
|
"@types/node": "^20.14.8",
|
|
"@types/selenium-webdriver": "3.0.7",
|
|
"concurrently": "9.2.1",
|
|
"jasmine-core": "6.2.0",
|
|
"jasmine-spec-reporter": "~7.0.0",
|
|
"protractor": "^7.0.0",
|
|
"selenium-webdriver": "3.5.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "6.0.3"
|
|
},
|
|
"packageManager": "pnpm@10.33.4"
|
|
}
|