-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.74 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": "iam-ui",
"version": "1.1.304",
"engines": {
"node": "24.14"
},
"scripts": {
"preinstall": "npx only-allow npm",
"ng": "ng",
"build:lib": "ng build lib",
"build:lib:watch": "ng build lib --watch",
"start:ui": "ng serve ui --serve-path=/ui/iam/ui/",
"start:ui:watch": "concurrently 'npm:build:lib:watch' 'npm:start:ui'",
"start:wc": "ng serve wc --port 4002 --headers Access-Control-Allow-Origin=*",
"build:ui": "ng build ui --deploy-url=/ui/iam/ui/",
"build:wc": "ng build wc --deploy-url=/ui/iam/wc/",
"build": "npm run build:lib && npm run build:ui && npm run build:wc",
"lint": "npm run build:lib && ng lint",
"lint:fix": "npm run build:lib && ng lint --fix",
"lint:ui": "npm run build:lib && ng lint lib && ng lint ui",
"lint:wc": "npm run build:lib && ng lint lib && ng lint wc",
"test": "ng test lib --configuration=coverage && ng test ui --configuration=coverage && ng test wc --configuration=coverage",
"test:cov": "ng test lib --configuration=coverage && ng test ui --configuration=coverage && ng test wc --configuration=coverage",
"e2e:ci": "echo 'There are no e2e tests'",
"e2e:wc:ci": "echo 'There are no e2e tests'",
"e2e:ui:ci": "echo 'There are no e2e tests'",
"postinstall": "husky install .husky",
"format": "prettier --write --list-different .",
"check-format": "prettier --check .",
"pipeline": "npm run check-format && npm run lint && ACCESS_TOKEN=$PIPER_VAULTCREDENTIAL_ACCESS_TOKEN node node_modules/@openmfp/gha-cache/angular.js"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@angular/animations": "21.2.20",
"@angular/cdk": "21.2.6",
"@angular/common": "21.2.20",
"@angular/compiler": "21.2.20",
"@angular/core": "21.2.20",
"@angular/elements": "21.2.20",
"@angular/forms": "21.2.20",
"@angular/localize": "21.2.20",
"@angular/platform-browser": "21.2.20",
"@angular/platform-browser-dynamic": "21.2.20",
"@angular/router": "21.2.20",
"@apollo/client": "^4.0.9",
"@fundamental-ngx/cdk": "^0.61.2",
"@fundamental-ngx/core": "^0.61.2",
"@fundamental-ngx/datetime-adapter": "^0.61.2",
"@fundamental-ngx/i18n": "^0.61.2",
"@fundamental-ngx/platform": "^0.61.2",
"@luigi-project/client": "^2.25.1",
"@luigi-project/client-support-angular": "^21.1.0",
"@ngrx/effects": "21.1.1",
"@sap-theming/theming-base-content": "~11.34.0",
"@sentry/angular": "10.68.0",
"apollo-angular": "^13.0.0",
"deep-equal": "2.2.3",
"deepmerge": "4.3.1",
"fundamental-styles": "~0.40.0",
"graphql": "16.14.2",
"graphql-sse": "2.6.0",
"graphql-ws": "5.16.2",
"lodash": "^4.17.21",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.1"
},
"devDependencies": {
"@angular/build": "21.2.21",
"@angular/cli": "21.2.21",
"@angular/compiler-cli": "21.2.20",
"@luigi-project/testing-utilities": "2.29.0",
"@openmfp/config-prettier": "^0.9.2",
"@openmfp/eslint-config-typescript": "^0.7.7",
"@openmfp/gha-cache": "^0.5.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "^4.1.7",
"angular-eslint": "^21.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.0.2",
"husky": "9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "15.5.2",
"ng-mocks": "14.15.2",
"ng-packagr": "21.2.2",
"prettier": "^3.8.3",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vitest": "^4.1.7",
"vitest-mock-extended": "^2.0.0"
},
"lint-staged": {
"*.{ts,css,md,html,json,scss}": "prettier --list-different",
"*.ts": "eslint --cache"
},
"overrides": {
"esbuild": "0.28.1"
}
}