-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.05 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
{
"name": "control-center",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": ". ./.env && ng serve --define \"SENTRY_DSN='${SENTRY_DSN}'\"",
"prod": "ng serve --configuration=production",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "npm run test -- --no-watch --no-progress --headless",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"spell": "cspell --no-progress ** && cspell-check-unused-words",
"spell:fix": "cspell-check-unused-words --fix && cspell --no-progress ** --show-suggestions --show-context",
"fix": "npm run lint:fix && npm run format:fix && npm run spell:fix",
"check": "concurrently --prefix \"[{command}]\" --prefixColors auto --prefixLength 20 \"npm run format\" \"npm run lint\" \"npm run spell\""
},
"workspaces": [
"projects/*"
],
"engines": {
"node": ">=26"
},
"private": true,
"dependencies": {
"@angular/cdk": "^22.0.5",
"@angular/common": "^22.0.7",
"@angular/compiler": "^22.0.7",
"@angular/core": "^22.0.7",
"@angular/forms": "^22.0.7",
"@angular/material": "^22.0.5",
"@angular/material-date-fns-adapter": "^22.0.5",
"@angular/platform-browser": "^22.0.7",
"@angular/router": "^22.0.7",
"@ngneat/input-mask": "^6.1.0",
"@sentry/angular": "^10.68.0",
"@tailwindcss/postcss": "^4.3.1",
"@vality/domain-proto": "^2.0.2-239638b.0",
"@vality/fistful-proto": "^2.0.1-9864622.0",
"@vality/machinegun-proto": "^1.0.1-273f2f3.0",
"@vality/magista-proto": "^2.0.2-bd58cea.0",
"@vality/repairer-proto": "^2.0.2-07b2a51.0",
"@vality/scrooge-proto": "^0.1.1-eec9e06.0",
"@vality/thrift-ts": "^2.5.1-2b658f2.0",
"date-fns": "^4.4.0",
"keycloak-angular": "^22.0.0",
"keycloak-js": "^26.2.4",
"lodash-es": "^4.18.1",
"monaco-editor": "^0.55.1",
"ngx-monaco-editor-v2": "^22.0.4",
"postcss": "^8.5.15",
"rxjs": "~7.8.2",
"short-uuid": "^6.0.3",
"tailwindcss": "^4.2.2",
"tslib": "^2.8.1",
"typescript-memoize": "^1.1.1",
"utility-types": "^3.11.0",
"uuid": "^14.0.0",
"zod": "^4.4.3",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^22.0.7",
"@angular/cli": "^22.0.7",
"@angular/compiler-cli": "^22.0.7",
"@cspell/dict-ru_ru": "^2.3.2",
"@eslint/js": "^10.0.1",
"@types/lodash-es": "^4.17.12",
"@vitest/browser-playwright": "^4.1.9",
"angular-eslint": "^22.0.0",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"cspell": "^10.0.1",
"cspell-check-unused-words": "^1.6.0",
"eslint": "^10.5.0",
"eslint-plugin-import-x": "^4.17.0",
"eslint-plugin-paths": "^1.1.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^29.1.1",
"ng-packagr": "^22.0.0",
"postcss": "^8.5.15",
"prettier": "^3.8.4",
"prettier-plugin-organize-attributes": "^1.0.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.1.9"
}
}