-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "prox-web-client",
"version": "1.35.2",
"scripts": {
"ng": "ng",
"start": "cross-env NG_PERSISTENT_BUILD_CACHE=1 ng serve",
"start:local": "npm run start -- --configuration local",
"build": "cross-env NG_PERSISTENT_BUILD_CACHE=1 ng build",
"build:dev": "npm run build -- --configuration local",
"build:ci": "npm run build:prod",
"build:prod": "cross-env NODE_ENV=production ng build --configuration production --aot --output-hashing=all",
"test": "ng test",
"test:ci": "npm run test -- --watch=false --code-coverage --source-map true --browsers=ChromeHeadlessCI",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "npm run lint",
"e2e": "ng e2e",
"prepare": "husky install",
"release": "standard-version",
"format": "lint-staged"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.7",
"@angular/cdk": "^16.1.6",
"@angular/common": "^16.1.7",
"@angular/compiler": "^16.1.7",
"@angular/core": "^16.1.7",
"@angular/forms": "^16.1.7",
"@angular/material": "^16.1.6",
"@angular/material-moment-adapter": "^16.1.7",
"@angular/platform-browser": "^16.1.7",
"@angular/platform-browser-dynamic": "^16.1.7",
"@angular/router": "^16.1.7",
"@fortawesome/angular-fontawesome": "^0.13.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"autolinker": "^4.0.0",
"core-js": "^3.39.0",
"fuse.js": "^6.6.2",
"keycloak-angular": "^14.0.0",
"keycloak-js": "^25.0.6",
"material-icons-font": "^2.1.0",
"moment": "^2.29.4",
"ngx-mat-select-search": "^7.0.8",
"ngx-toastr": "~19.0.0",
"ngx-webstorage-service": "^5.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"typewriter-effect": "^2.20.1",
"webdriver": "^8.40.2",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.8",
"@angular-eslint/builder": "~18.4.1",
"@angular-eslint/eslint-plugin": "^16.0.3",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "~18.4.2",
"@angular-eslint/template-parser": "~18.4.2",
"@angular/cli": "^16.1.8",
"@angular/compiler-cli": "^16.1.7",
"@angular/language-service": "^18.2.12",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@map-colonies/standard-version-update-helm-version": "^2.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.14.11",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"codelyzer": "^6.0.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^4.12.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"jasmine-core": "~5.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.10",
"prettier": "^2.8.8",
"protractor": "~7.0.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.15",
"ts-node": "~10.9.1",
"typescript": "~5.1.6"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --ignore-path .eslintignore --write"
],
"*.{css,scss,json,md,html,yml,yaml}": "prettier --ignore-path .eslintignore --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}