-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.33 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.33 KB
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": "npx openapi-generator-cli generate --generator-key v3.0 > /dev/null",
"ng": "./node-modules/.bin/ng",
"prestart": "npm run openapi",
"prestart:e2e": "./e2e/compose/compose.sh && npm run openapi",
"start": "ng serve --host 0.0.0.0 --port 4200 --disable-host-check --proxy-config staging.proxy.config.json",
"start:e2e": "ng serve --host 0.0.0.0 --port 4200 --disable-host-check --proxy-config e2e.proxy.config.json",
"prebuild": "npm run openapi",
"build": "ng build",
"pretest": "npm run openapi",
"test": "npm run e2e",
"prelint": "npm run openapi",
"lint": "ng lint",
"e2e": "npx playwright test --project=firefox",
"e2e:ui": "npm run e2e --ui",
"sonar": "sonar-scanner",
"licences": "license-report --output=html > ./portal_ui_licences.html --config ./license-report-config.json"
},
"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/localize": "17.3.12",
"@angular/platform-browser": "17.3.12",
"@angular/platform-browser-dynamic": "17.3.12",
"@angular/router": "17.3.12",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@popperjs/core": "^2.11.8",
"angular-oauth2-oidc": "^17.0.2",
"bootstrap": "^5.3.2",
"license-report": "5.0.2",
"lodash": "4.17.21",
"rxjs": "~7.4.0",
"tslib": "2.3.0",
"uuid": "^13.0.0",
"zone.js": "0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.11",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "17.3.11",
"@angular/compiler-cli": "17.3.12",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@playwright/test": "^1.56.1",
"@types/jasmine": "~3.10.18",
"@types/jasminewd2": "2.0.3",
"@types/lodash": "4.17.23",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"git-format-staged": "3.1.3",
"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.5.0",
"playwright-ng-schematics": "^1.2.2",
"prettier": "2.6.2",
"sonar-scanner": "3.1.0",
"ts-node": "10.9.0",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write .",
"eslint --fix",
"git add"
],
"*.{html,css}": [
"prettier --write .",
"git add"
]
}
}