-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 4 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
104
{
"name": "dashboard",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nx serve --proxy-config proxy.conf.js --port 8000",
"stage": "cross-env NODE_ENV=stage nx serve --proxy-config proxy.conf.js --port 8001 --configuration=stage",
"fix": "npm run i18n:extract && npm run spell:fix && npm run lint:fix && npm run format:fix && npm run spell:fix",
"build": "nx build && transloco-optimize dist/browser/assets/i18n",
"test": "nx test",
"i18n": "transloco-keys-manager find --emit-error-on-extra-keys",
"i18n:extract": "transloco-keys-manager extract --remove-extra-keys",
"i18n:fix": "npm run i18n:extract && prettier src/assets/i18n/** --write",
"coverage": "npx http-server -c-1 -o -p 9875 ./coverage",
"lint": "nx lint --max-warnings=0",
"lint:fix": "nx lint --fix",
"lint:errors": "nx lint --quiet",
"format": "prettier ** --list-different",
"format:fix": "prettier ** --write --log-level warn",
"tools-cmd": "ts-node --project tools/tsconfig.json",
"icons-list-gen": "npm run tools-cmd -- tools/gen-icons-list.ts",
"icons-ids-gen": "npm run tools-cmd -- tools/gen-icons-ids.ts",
"spell": "cspell --no-progress **",
"spell:fix": "cspell --no-progress --show-suggestions --show-context **",
"check": "concurrently --prefix \"[{command}]\" --prefixColors auto --prefixLength 20 \"npm run format\" \"npm run lint\" \"npm run spell\" \"npm run i18n\""
},
"dependencies": {
"@angular/animations": "^19.1.6",
"@angular/cdk": "~19.1.4",
"@angular/common": "^19.1.6",
"@angular/compiler": "^19.1.6",
"@angular/core": "^19.1.6",
"@angular/forms": "^19.1.6",
"@angular/material": "~19.1.4",
"@angular/material-moment-adapter": "^19.1.4",
"@angular/platform-browser": "^19.1.6",
"@angular/platform-browser-dynamic": "^19.1.6",
"@angular/router": "^19.1.6",
"@jsverse/transloco": "^7.5.0",
"@vality/matez": "19.0.1-pr-423-eca1120.0",
"@vality/swag-anapi-v2": "2.0.1-dc90399.0",
"@vality/swag-api-keys-v2": "0.1.2",
"@vality/swag-claim-management": "0.1.1-d151b50.0",
"@vality/swag-organizations": "1.0.1-67dcada.0",
"@vality/swag-payments": "0.1.3-fd6802c.0",
"@vality/swag-url-shortener": "0.1.1-17b1e98.0",
"@vality/swag-wallets": "0.1.3",
"apexcharts": "^3.19.2",
"humanize-duration": "^3.19.0",
"jwt-decode": "^3.1.2",
"keycloak-angular": "19.0.2",
"keycloak-js": "^18.0.1",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"ng-apexcharts": "1.7.1",
"ng-flex-layout": "^19.0.0",
"rxjs": "^7.8.1",
"short-uuid": "^5.2.0",
"tslib": "^2.4.0",
"utility-types": "^3.10.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.7",
"@angular-devkit/core": "^19.1.7",
"@angular-devkit/schematics": "^19.1.7",
"@angular-eslint/builder": "^19.1.0",
"@angular-eslint/schematics": "^19.1.0",
"@angular/cli": "^19.1.7",
"@angular/compiler-cli": "^19.1.6",
"@angular/language-service": "^19.1.6",
"@jsverse/transloco-keys-manager": "^6.1.0",
"@jsverse/transloco-optimize": "^7.0.1",
"@nx/angular": "20.4.5",
"@nx/eslint-plugin": "^20.4.5",
"@nx/workspace": "20.4.5",
"@schematics/angular": "^19.1.7",
"@types/humanize-duration": "^3.18.0",
"@types/jasmine": "~5.1.4",
"@types/lodash-es": "^4.17.12",
"@vality/ng-configs": "0.1.1-pr-423-667df70.0",
"angular-eslint": "^19.1.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"cspell": "^8.17.3",
"dotenv": "^16.0.3",
"eslint": "^9.20.1",
"glob": "^11.0.0",
"jasmine-core": "~5.1.1",
"jasmine-marbles": "0.9.2",
"jsonc-eslint-parser": "^2.4.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"nx": "20.4.5",
"prettier": "^3.5.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.1"
}
}