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
|
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"openapi": "npx openapi-generator-cli generate --generator-key v3.0",
"ng": "./node-modules/.bin/ng",
"prestart": "npm run openapi",
"start": "ng serve --proxy-config staging.proxy.config.json --host 0.0.0.0 --port 80 --disable-host-check",
"prebuild": "npm run openapi",
"build": "ng build",
"pretest": "npm run openapi",
"test": "ng test --browsers FirefoxHeadless",
"prelint": "npm run openapi",
"lint": "ng lint",
"pree2e": "npm run openapi",
"e2e": "ng e2e",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-4200": "compodoc -p tsconfig.json -s -r 4200",
"sonar": "sonar-scanner",
"licences": "license-report --output=html > ./portal_ui_licences.html --config ./license-report-config.json"
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/cdk": "16.2.14",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/localize": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@ng-bootstrap/ng-bootstrap": "15.1.2",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@popperjs/core": "^2.11.6",
"angular-oauth2-oidc": "^16.0.0",
"bootstrap": "5.2.3",
"license-report": "5.0.2",
"lodash": "4.17.21",
"rxjs": "~7.4.0",
"tslib": "2.3.0",
"zone.js": "0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.16",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "16.2.16",
"@angular/compiler-cli": "16.2.12",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.3",
"@types/lodash": "4.14.188",
"@types/node": "18.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"git-format-staged": "3.0.0",
"husky": "8.0.1",
"jasmine-core": "~4.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "6.3.20",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"karma-sonarqube-unit-reporter": "0.0.23",
"karma-spec-reporter": "0.0.33",
"license-check-and-add": "4.0.5",
"license-checker": "25.0.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"protractor": "7.0.0",
"sonar-scanner": "3.1.0",
"ts-node": "10.9.0",
"typescript": "~4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write .",
"eslint --fix",
"git add"
],
"*.{html,css}": [
"prettier --write .",
"git add"
]
}
}
|