-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
154 lines (154 loc) · 7.42 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "angular-sdk",
"version": "24.1.10",
"scripts": {
"_comment_SDK_install_build_run_commands": "The following are public commands to clean, install, build, and run the SDK",
"build:dev": "npm run _internal-check-node-version && run-p -l fix _internal-build-dev-only",
"build:dev:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:dev",
"build:prod": "npm run _internal-check-node-version && run-p -l fix _internal-build-prod-only",
"build:prod:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:prod",
"start-dev": "ng serve --port 3500",
"start-dev-https": "ng serve --port 3500 --ssl --ssl-key private.key --ssl-cert private.pem",
"start-prod": "http-server ./dist -c-1 --port 3500 --gzip --brotli --cors --proxy http://localhost:3500?",
"start-prod-https": "http-server ./dist -c-1 --ssl --cert private.pem --key private.key --port 3500 --gzip --brotli --cors --proxy https://localhost:3500?",
"clean": "echo \"cleaning...\" && npx shx --yes rm -rf ./dist/** ./node_modules ./.angular/cache",
"lint": "run-p -cl lint:*",
"lint:es": "eslint --color --cache --cache-location node_modules/.cache/eslint/ 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/ src",
"fix:format": "prettier --log-level warn -w .",
"_comment_DXCB_commands": "The following are public commands to run the integrated DX Component Builder",
"authenticate": "dx-component-builder-sdk authenticate",
"buildAllComponents": "dx-component-builder-sdk buildAllComponents",
"buildComponent": "dx-component-builder-sdk buildComponent",
"clearMap": "dx-component-builder-sdk clearMap",
"create": "dx-component-builder-sdk create",
"createAll": "dx-component-builder-sdk createAll",
"delete": "dx-component-builder-sdk delete",
"deleteAll": "dx-component-builder-sdk deleteAll",
"list": "dx-component-builder-sdk list",
"mapAll": "dx-component-builder-sdk mapAll",
"override": "dx-component-builder-sdk override",
"overrideAll": "dx-component-builder-sdk overrideAll",
"publish": "dx-component-builder-sdk publish",
"publishAll": "dx-component-builder-sdk publishAll",
"rename": "dx-component-builder-sdk rename",
"scanAndFix": "dx-component-builder-sdk scanAndFix",
"startStorybook": "ng run angularsdk:storybook",
"_comment_SDK_public_SDK_test_commands": "The following are public commands used for testing the 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",
"_comment_internal_SDK_scripts": "The following commands are for internal use and are intended to be called only from public scripts above",
"_internal-compress-angularsdk": "node ./scripts/compress-with-assets.mjs",
"_internal-build-dev-only": "shx rm -rf ./dist && ng build --configuration development && npm run _internal-copy-index",
"_internal-build-prod-only": "shx rm -rf ./dist && ng build --configuration production && npm run _internal-copy-index && npm run _internal-compress-angularsdk",
"_internal-check-node-version": "node scripts/check-node-version",
"_internal-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",
"_internal-install-sdk": "echo \"installing...\" && npm install --loglevel notice",
"_internal-test-functional": "npm run test:functional:local:sdk-a --prefix node_modules/@pega/dx-component-builder-sdk",
"_internal-build-jest-assets": "dx-component-builder-sdk buildJestAssets"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.12",
"@angular/cdk": "^17.3.10",
"@angular/common": "^17.3.12",
"@angular/compiler": "^17.3.12",
"@angular/core": "^17.3.12",
"@angular/forms": "^17.3.12",
"@angular/material": "^17.3.10",
"@angular/material-experimental": "^17.3.10",
"@angular/material-moment-adapter": "^17.3.10",
"@angular/platform-browser": "^17.3.12",
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/router": "^17.3.12",
"@danielmoncada/angular-datetime-picker": "^17.0.0",
"@pega/angular-sdk-components": "~24.1.10",
"@pega/auth": "~0.2.14",
"@pega/cosmos-react-condition-builder": "^4.2.0",
"@pega/cosmos-react-core": "^4.2.0",
"@pega/cosmos-react-work": "^4.2.0",
"@tinymce/tinymce-angular": "^8.0.1",
"core-js": "^3.37.1",
"dayjs": "^1.11.10",
"downloadjs": "^1.4.7",
"fast-deep-equal": "^3.1.3",
"libphonenumber-js": "^1.11.4",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"ngx-currency": "^17.0.0",
"ngx-mat-intl-tel-input": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.8.1",
"styled-components": "^6.1.8",
"tslib": "^2.6.2",
"zone.js": "~0.14.8"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^17.0.2",
"@angular-devkit/build-angular": "^17.3.8",
"@angular-devkit/core": "^17.3.8",
"@angular-eslint/eslint-plugin": "^17.5.2",
"@angular-eslint/eslint-plugin-template": "^17.5.2",
"@angular-eslint/template-parser": "^17.5.2",
"@angular/cli": "^17.3.8",
"@angular/compiler-cli": "^17.3.12",
"@angular/language-service": "^17.3.12",
"@pega/angular-sdk-overrides": "~24.1.10",
"@pega/configs": "^0.7.2",
"@pega/constellationjs": "24.1.1",
"@pega/dx-component-builder-sdk": "~24.1.11",
"@pega/eslint-config": "^0.7.1",
"@pega/pcore-pconnect-typedefs": "~3.0.0",
"@pega/prettier-config": "^0.7.2",
"@playwright/test": "^1.40.1",
"@storybook/addon-a11y": "^7.6.7",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/angular": "^7.6.7",
"@storybook/blocks": "^7.6.7",
"@storybook/jest": "^0.2.3",
"@storybook/testing-library": "^0.2.2",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.11.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"brotli": "^1.3.3",
"codelyzer": "^6.0.2",
"compressing": "^1.10.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"fs-extra": "^11.2.0",
"http-server": "^14.1.1",
"jasmine-core": "~5.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"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",
"npm-force-resolutions": "0.0.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"replace-in-file": "^7.1.0",
"shx": "^0.3.4",
"storybook": "^7.6.7",
"style-loader": "^3.3.4",
"stylelint": "^16.1.0",
"tinymce": "^7.2.1",
"ts-loader": "^9.5.1",
"ts-node": "~10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.89.0"
}
}