-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 3.17 KB
/
package.json
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
{
"name": "self-service",
"version": "1.4-0dev",
"license": "GPL-3.0-only",
"scripts": {
"ng": "ng",
"start": "yarn start-en",
"start-de": "yarn start-base --configuration=de",
"start-en": "yarn start-base --configuration=en",
"start-base": "ng serve --proxy-config .dev-proxy/proxy.conf.js",
"start:ki-cloud": "ng serve --ssl --proxy-config .dev-proxy/ki-cloud.conf.js",
"build": "urlprefix=\"\" yarn build-with-prefix",
"build-with-prefix": "for lang in de en; do ng build --configuration=production,$lang --base-href=$urlprefix/$lang/; done",
"test": "yarn test:chrome",
"test:chrome": "ng test --browsers Chrome",
"test:chromium": "ng test --browsers Chromium",
"test:firefox": "ng test --browsers Firefox",
"test:all": "ng test --watch=false",
"test:ci": "ng test --browsers ChromeHeadless --watch=false --code-coverage",
"test:ci-no-sandbox": "ng test --browsers ChromeHeadlessNoSandbox --code-coverage --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"extract-i18n": "ng extract-i18n self-service --format xlf --output-path src/locale/",
"postextract-i18n": "xliffmerge --profile .xliffmerge.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/localize": "^16.2.12",
"@angular/material": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@fontsource/material-icons": "^5.0.11",
"@fontsource/roboto": "^5.0.8",
"angularx-qrcode": "^16.0.2",
"core-js": "^2.4.1",
"js-yaml": "^4.1.0",
"marked": "^12.0.0",
"ngx-cookie": "^6.0.1",
"ngx-markdown": "^16.0.0",
"ngx-permissions": "^16.0.0",
"rxjs": "^7.4.0",
"tslib": "^2.0.0",
"webpack": "^5.0.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.10",
"@angular-eslint/builder": "16.3.0",
"@angular-eslint/eslint-plugin": "16.3.0",
"@angular-eslint/eslint-plugin-template": "16.3.0",
"@angular-eslint/schematics": "16.3.0",
"@angular-eslint/template-parser": "16.3.0",
"@angular/cli": "^16.2.10",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^18.10.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.28.0",
"eslint-plugin-jasmine": "^4.1.3",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~1.0.1",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ngx-i18nsupport": "^0.17.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"typescript": "~5.1.6"
},
"resolutions": {
"webpack": "^5.0.0"
}
}