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
|
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"openapi": "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": "13.3.10",
"@angular/cdk": "13.3.8",
"@angular/common": "13.3.10",
"@angular/compiler": "13.3.10",
"@angular/core": "13.3.10",
"@angular/forms": "13.3.10",
"@angular/localize": "13.3.10",
"@angular/platform-browser": "13.3.10",
"@angular/platform-browser-dynamic": "13.3.10",
"@angular/router": "13.3.10",
"@ng-bootstrap/ng-bootstrap": "12.1.2",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"@popperjs/core": "2.11.5",
"angular-oauth2-oidc": "12.1.0",
"bootstrap": "5.1.3",
"license-report": "5.0.2",
"lodash": "4.17.21",
"ng-bootstrap": "1.6.3",
"rxjs": "6.6.7",
"tslib": "2.2.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.7",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "13.3.7",
"@angular/compiler-cli": "13.3.10",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.3",
"@types/lodash": "^4.14.188",
"@types/node": "16.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "7.32.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.0.0",
"typescript": "4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write .",
"eslint --fix",
"git add"
],
"*.{html,css}": [
"prettier --write .",
"git add"
]
}
}
|