-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 6.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@pega/angular-sdk-components",
"version": "24.2.10",
"description": "Angular SDK packaging: bridge and components, overrides",
"main": "index.ts",
"private": true,
"keywords": [
"Pega",
"Constellation",
"Angular SDK"
],
"author": "Pegasystems",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"build:prod": "run-p -l lint prod-build-angularsdk",
"build:prod:ci": "npm run clean && npm install && npm run build:prod",
"build:dev": "run-p -l lint build-angularsdk",
"build:dev:ci": "npm run clean && npm install && npm run build:dev",
"lint": "run-p -cl lint:*",
"lint:es": "eslint --color --cache --cache-location node_modules/.cache/eslint/ \"projects/angular-test-app/src/**\" \"packages/angular-sdk-components/src/**\"",
"lint:format": "prettier --log-level warn -c .",
"fix": "run-s -cl fix:*",
"fix:es": "eslint --color --fix --cache --cache-location node_modules/.cache/eslint/ \"projects/angular-test-app/src/**\" \"packages/angular-sdk-components/src/**\"",
"fix:format": "prettier --log-level warn -w .",
"start-dev": "ng serve --port 3500",
"start-dev-https": "ng serve --port 3500 --ssl --ssl-key private.key --ssl-cert private.pem",
"start-prod": "ng serve --configuration production --port 3500",
"start-prod-https": "ng serve --configuration production --port 3500 --ssl --ssl-key private.key --ssl-cert private.pem",
"_comment": "Commands above are those expected to be run by customers/clients",
"prebuild-sdk": "npm run delete-tsbuildinfo && npm run clear-lib && npm run clear-overrides",
"build-sdk": "npm run compile-ts",
"prebuild-overrides": "shx rm -rf ./packages/angular-sdk-overrides/lib && shx cp -r ./packages/angular-sdk-components/src/lib/_components ./packages/angular-sdk-overrides/lib",
"build-overrides": "node scripts/build-overrides",
"postbuild-overrides": "node ./scripts/copy-npm-assets-to-overrides.js && echo build-overrides completed",
"compile-ts": "ngc -b tsconfig.build.json",
"delete-tsbuildinfo": "rm -f projects/angular-test-app/*.*.tsbuildinfo",
"ci": "npm run clean && npm install",
"clean": "npx shx --yes rm -rf ./node_modules ./.angular/cache && npm run clear-dist && npm run clear-lib",
"clear-dist": "npx shx --yes rm -rf ./dist",
"clear-lib": "npx shx --yes rm -rf ./projects/angular-test-app/lib",
"clear-overrides": "npx shx --yes rm -rf ./packages/angular-sdk-overrides/lib",
"ng": "ng",
"build": "ng build angular-test-app --configuration development",
"prod-build": "ng build angular-test-app --configuration production",
"compress-angularsdk": "node ./scripts/compress-with-assets.mjs",
"copy-index": "shx cp dist/index.html dist/simpleportal.html && shx cp dist/index.html dist/portal.html && shx cp dist/index.html dist/fullportal.html && shx cp dist/index.html dist/embedded.html && shx cp dist/index.html dist/mashup.html",
"make-mashup-dir": "cd ./dist && shx mkdir -p constellation && cd ./constellation && shx mkdir -p prerequisite && shx mkdir -p assets && cd ./assets && shx mkdir -p icons",
"build-angularsdk": "shx rm -rf ./dist && ng build --configuration development angular-test-app && npm run copy-index && npm run make-mashup-dir",
"build-angular-sdk-components": "ng build angular-sdk-components && node scripts/copy-map.js && node ./scripts/copy-npm-assets-to-components.js",
"prod-build-angularsdk": "shx rm -rf ./dist && npm run prod-build && npm run copy-index && npm run make-mashup-dir && npm run compress-angularsdk",
"start": "npm run ng serve",
"_comment_2": "Commands related to running tests against the Angular SDK",
"test": "node ./scripts/playwright-message.js && playwright test --project=chromium MediaCo/portal MediaCo/embedded",
"test:headed": "playwright test --headed --project=chromium MediaCo/portal MediaCo/embedded",
"test-report": "playwright show-report"
},
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/cdk": "^18.2.13",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/material": "^18.2.13",
"@angular/material-experimental": "^18.2.13",
"@angular/material-moment-adapter": "^18.2.13",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/router": "^18.2.12",
"@danielmoncada/angular-datetime-picker": "^18.1.0",
"@pega/auth": "~0.2.19",
"@tinymce/tinymce-angular": "^8.0.1",
"core-js": "^3.39.0",
"dayjs": "^1.11.13",
"downloadjs": "^1.4.7",
"fast-deep-equal": "^3.1.3",
"libphonenumber-js": "^1.10.53",
"lodash.clonedeep": "^4.5.0",
"ngx-currency": "^18.0.0",
"ngx-mat-intl-tel-input": "^5.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^18.0.0",
"@angular-devkit/build-angular": "^18.2.12",
"@angular-devkit/core": "^18.2.12",
"@angular-eslint/eslint-plugin": "^18.4.0",
"@angular-eslint/eslint-plugin-template": "^18.4.0",
"@angular-eslint/template-parser": "^18.4.1",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@angular/language-service": "^18.2.12",
"@pega/configs": "^0.16.2",
"@pega/constellationjs": "~24.2.0",
"@pega/eslint-config": "^0.16.2",
"@pega/pcore-pconnect-typedefs": "3.2.1",
"@pega/prettier-config": "^0.16.2",
"@playwright/test": "^1.40.1",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"brotli": "^1.3.3",
"codelyzer": "^6.0.2",
"compressing": "^1.10.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"fs-extra": "^11.2.0",
"http-server": "^14.1.1",
"jasmine-core": "~5.1.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"md5-file": "^5.0.0",
"ng-packagr": "^18.2.1",
"npm-force-resolutions": "0.0.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"shx": "^0.3.4",
"tinymce": "^7.2.1",
"ts-node": "~10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.96.1"
}
}