2017-03-15 00:11:39 +00:00
|
|
|
{
|
2023-04-18 10:27:19 +00:00
|
|
|
"name": "platform-server",
|
2017-03-15 00:11:39 +00:00
|
|
|
"version": "0.0.0",
|
2023-04-18 10:27:19 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"ng": "ng",
|
2023-04-19 21:41:39 +00:00
|
|
|
"#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",
|
2023-11-27 09:41:02 +00:00
|
|
|
"build:ngmodule": "ng run ngmodule:build:development",
|
|
|
|
|
"serve:ngmodule": "node ./dist/ngmodule/server/server.mjs",
|
2025-09-18 09:46:02 +00:00
|
|
|
"test:ngmodule": "pnpm build:ngmodule && concurrently \"pnpm serve:ngmodule\" \"pnpm ng e2e ngmodule\" --kill-others --success first",
|
2023-11-27 09:41:02 +00:00
|
|
|
"build:standalone": "ng run standalone:build:development",
|
|
|
|
|
"serve:standalone": "node ./dist/standalone/server/server.mjs",
|
2025-09-18 09:46:02 +00:00
|
|
|
"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"
|
2017-03-15 00:11:39 +00:00
|
|
|
},
|
2023-04-18 10:27:19 +00:00
|
|
|
"private": true,
|
2017-03-15 00:11:39 +00:00
|
|
|
"dependencies": {
|
2025-09-19 11:57:36 +00:00
|
|
|
"@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",
|
2025-11-05 23:39:28 +00:00
|
|
|
"@angular/ssr": "21.0.0-rc.1",
|
2025-09-18 09:46:02 +00:00
|
|
|
"express": "~5.1.0",
|
|
|
|
|
"rxjs": "^7.0.0",
|
|
|
|
|
"tslib": "^2.3.0",
|
|
|
|
|
"zone.js": "0.15.1"
|
2017-03-15 00:11:39 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-11-05 23:39:28 +00:00
|
|
|
"@angular-devkit/build-angular": "21.0.0-rc.1",
|
|
|
|
|
"@angular/build": "21.0.0-rc.1",
|
|
|
|
|
"@angular/cli": "21.0.0-rc.1",
|
2025-09-19 11:57:36 +00:00
|
|
|
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
|
2025-09-18 09:46:02 +00:00
|
|
|
"@types/express": "^5.0.3",
|
|
|
|
|
"@types/jasmine": "^5.0.0",
|
|
|
|
|
"@types/node": "^20.14.8",
|
|
|
|
|
"@types/selenium-webdriver": "3.0.7",
|
2025-09-19 14:46:40 +00:00
|
|
|
"concurrently": "9.2.1",
|
2025-11-05 22:40:53 +00:00
|
|
|
"jasmine-core": "5.12.1",
|
2025-09-19 14:47:26 +00:00
|
|
|
"jasmine-spec-reporter": "~7.0.0",
|
2025-09-18 09:46:02 +00:00
|
|
|
"protractor": "^7.0.0",
|
|
|
|
|
"selenium-webdriver": "3.5.0",
|
|
|
|
|
"ts-node": "^10.9.1",
|
2025-10-02 15:41:17 +00:00
|
|
|
"typescript": "5.9.3"
|
2025-09-18 09:46:02 +00:00
|
|
|
},
|
2025-10-31 05:12:36 +00:00
|
|
|
"packageManager": "pnpm@10.20.0"
|
2025-09-19 11:57:36 +00:00
|
|
|
}
|