forked from onecx/onecx-shell-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.92 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
{
"name": "onecx-shell-ui",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"contributors": [
"OneCX Development Team <[email protected]>"
],
"config": {
"openapiYaml": "src/assets/api/openapi-bff.yaml",
"openapiOutput": "src/app/shared/generated"
},
"scripts": {
"build": "nx build",
"check": "nx lint --cache=true && npx prettier -c --cache .",
"clean": "npm cache clean --force",
"eslint": "eslint --quiet --ext .js,.ts src",
"browser": "npx browserslist",
"prepare": "husky || true",
"start": "nx serve --configuration=development --proxy-config=proxy.conf.js",
"lint": "nx lint --cache=true",
"format": "nx lint --fix",
"test": "nx test",
"test:ci": "nx test --coverage --testResultsProcessor=jest-sonar-reporter",
"apigen-cleanup": "rm -rf $npm_package_config_openapiOutput",
"apigen-format": "npx prettier $npm_package_config_openapiYaml --write && npx prettier $npm_package_config_openapiOutput/**/* --write",
"apigen-generate": "openapi-generator-cli generate -i $npm_package_config_openapiYaml -g typescript-angular -c apigen.yaml -o $npm_package_config_openapiOutput --type-mappings=AnyType=object,set=Array",
"apigen": "npm run apigen-cleanup && npm run apigen-generate && npm run apigen-format"
},
"dependencies": {
"@angular-architects/module-federation": "18.0.6",
"@angular-architects/module-federation-tools": "18.0.6",
"@angular/animations": "^18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/elements": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/router": "^18.2.6",
"@ngx-translate/core": "^15.0.0",
"@nx/angular": "19.8.2",
"@onecx/accelerator": "^5.22.0",
"@onecx/angular-accelerator": "^5.22.0",
"@onecx/angular-auth": "^5.22.0",
"@onecx/angular-integration-interface": "^5.22.0",
"@onecx/angular-remote-components": "^5.22.0",
"@onecx/angular-webcomponents": "^5.22.0",
"@onecx/integration-interface": "^5.22.0",
"@onecx/keycloak-auth": "^5.22.0",
"@onecx/portal-integration-angular": "^5.22.0",
"@onecx/portal-layout-styles": "^5.22.0",
"@onecx/shell-core": "^5.22.0",
"@openapitools/openapi-generator-cli": "^2.13.9",
"keycloak-angular": "^16.0.1",
"keycloak-js": "^25.0.6",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primeng": "^17.18.11",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.6",
"@angular-devkit/core": "^18.2.6",
"@angular-devkit/schematics": "^18.2.6",
"@angular-eslint/eslint-plugin": "^18.3.1",
"@angular-eslint/eslint-plugin-template": "^18.3.1",
"@angular-eslint/template-parser": "^18.3.1",
"@angular/cdk": "^18.2.6",
"@angular/cli": "~18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@angular/language-service": "^18.2.6",
"@nx/eslint": "19.8.2",
"@nx/eslint-plugin": "19.8.2",
"@nx/jest": "19.8.2",
"@nx/js": "19.8.2",
"@nx/workspace": "19.8.2",
"@schematics/angular": "~18.2.8",
"@swc-node/register": "1.10.9",
"@swc/core": "1.7.35",
"@swc/helpers": "0.5.13",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "~8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.2.4",
"jest-sonar-reporter": "^2.0.0",
"jsonc-eslint-parser": "^2.4.0",
"nx": "19.8.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "~5.5.4"
},
"nx": {
"includedScripts": []
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "sonarqube_report.xml"
}
}