-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.2 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
{
"name": "pcts",
"version": "0.7.0",
"packageManager": "pnpm@11.11.0",
"engines": {
"node": ">=22",
"pnpm": ">=10",
"npm": ">=99999"
},
"scripts": {
"ng": "ng",
"start": "ng serve --hmr",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --silent --runInBand",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"format:all": "pnpm run lint:format && pnpm run prettier:lint:format",
"check-linting:all": "pnpm run lint && pnpm run prettier:lint",
"lint:format:specific": "eslint --fix --no-warn-ignored",
"lint:format": "eslint --fix .",
"lint": "eslint .",
"prettier:lint:format:specific": "prettier --write ",
"prettier:lint:format": "prettier --write .",
"prettier:lint": "prettier --check .",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/cdk": "^22.0.0",
"@angular/common": "^21.0.4",
"@angular/compiler": "^21.0.4",
"@angular/core": "^21.0.4",
"@angular/forms": "^21.0.4",
"@angular/material": "^22.0.0",
"@angular/material-date-fns-adapter": "^22.0.0",
"@angular/material-luxon-adapter": "^22.0.0",
"@angular/platform-browser": "^21.0.4",
"@angular/router": "^21.0.4",
"@ngx-translate/core": "^18.0.0",
"@ngx-translate/http-loader": "^18.0.0",
"@puzzleitc/puzzle-shell": "^5.1.0",
"bootstrap": "^5.3.7",
"date-fns": "^4.1.0",
"keycloak-angular": "^22.0.0",
"keycloak-js": "^26.2.2",
"luxon": "^3.7.2",
"material-icons": "^1.13.14",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"jest-environment-jsdom": "^30.2.0",
"cypress": "^15.2.0",
"@angular-eslint/eslint-plugin": "^22.0.0",
"@angular-eslint/eslint-plugin-template": "^22.0.0",
"@angular-eslint/schematics": "^22.0.0",
"@angular-eslint/template-parser": "^22.0.0",
"@angular/build": "^21.0.3",
"@angular/cli": "^21.0.3",
"@angular/compiler-cli": "^21.0.4",
"@cspell/dict-de-ch": "^1.3.2",
"@cspell/eslint-plugin": "^10.0.0",
"@html-eslint/eslint-plugin": "^0.64.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/jasmine": "~6.0.0",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.7.1",
"angular-eslint": "^22.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.0.0",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-prettier": "^5.5.4",
"jasmine-core": "~6.3.0",
"jest": "^30.0.5",
"jest-junit": "^17.0.0",
"jest-preset-angular": "^17.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"prettier": "^3.6.2",
"prettier-eslint": "^17.0.0",
"typescript": "~5.9.0",
"typescript-eslint": "8.63.0"
},
"jest": {
"preset": "jest-preset-angular",
"transformIgnorePatterns": [
"node_modules/\\.pnpm/(?!keycloak-js@).*(?<!\\.mjs)$",
"node_modules/(?!(\\.pnpm|keycloak-js)).*(?<!\\.mjs)$"
],
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
]
}
}