-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.7 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
{
"name": "dashboard",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "ng serve --proxy-config proxy.conf.js --port 8000",
"stage": "cross-env NODE_ENV=stage ng 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",
"build": "ng build && transloco-optimize dist/browser/assets/i18n",
"test": "ng test",
"i18n": "transloco-keys-manager find",
"i18n:extract": "transloco-keys-manager extract",
"i18n:fix": "npm run i18n:extract && prettier src/assets/i18n/** --write",
"coverage": "npx http-server -c-1 -o -p 9875 ./coverage",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"lint:errors": "ng 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": "^22.0.2",
"@angular/cdk": "~22.0.2",
"@angular/common": "^22.0.2",
"@angular/compiler": "^22.0.2",
"@angular/core": "^22.0.2",
"@angular/forms": "^22.0.2",
"@angular/material": "~22.0.2",
"@angular/material-date-fns-adapter": "^22.0.2",
"@angular/material-moment-adapter": "^22.0.2",
"@angular/platform-browser": "^22.0.2",
"@angular/platform-browser-dynamic": "^22.0.2",
"@angular/router": "^22.0.2",
"@jsverse/transloco": "^8.3.0",
"@vality/matez": "^22.0.1-e965167.0",
"@vality/swag-anapi-v2": "^2.0.1-f5e0f86.0",
"@vality/swag-api-keys-v2": "^0.1.3-019c9ca.0",
"@vality/swag-organizations": "^1.0.1-a72830b.0",
"@vality/swag-payments": "^0.1.3-92bb7f9.0",
"@vality/swag-wallets": "^0.1.4-fa83e95.0",
"apexcharts": "^3.54.1",
"date-fns": "^4.4.0",
"humanize-duration": "^3.19.0",
"jwt-decode": "^3.1.2",
"keycloak-angular": "^21.0.0",
"keycloak-js": "^26.2.3",
"lodash-es": "^4.18.1",
"moment": "^2.30.1",
"ng-apexcharts": "1.7.1",
"ng-flex-layout": "^22.0.1",
"rxjs": "^7.8.2",
"short-uuid": "^5.2.0",
"tslib": "^2.4.0",
"utility-types": "^3.10.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/core": "^22.0.3",
"@angular-devkit/schematics": "^22.0.3",
"@angular-eslint/builder": "^22.0.0",
"@angular-eslint/schematics": "^22.0.0",
"@angular/build": "^22.0.3",
"@angular/cli": "^22.0.3",
"@angular/compiler-cli": "^22.0.2",
"@angular/language-service": "^22.0.2",
"@cspell/dict-ru_ru": "^2.3.2",
"@eslint/js": "^10.0.1",
"@jsverse/transloco-keys-manager": "^8.1.0",
"@jsverse/transloco-optimize": "^8.3.0",
"@schematics/angular": "^22.0.3",
"@types/humanize-duration": "^3.18.0",
"@types/lodash-es": "^4.17.12",
"angular-eslint": "^22.0.0",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"cspell": "^10.0.1",
"dotenv": "^17.4.2",
"eslint": "^10.5.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-paths": "^1.1.0",
"eslint-plugin-unused-imports": "^4.4.1",
"glob": "^13.0.6",
"prettier": "^3.8.4",
"prettier-plugin-organize-attributes": "^1.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.1.9"
}
}