This repository was archived by the owner on Feb 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.25 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
{
"name": "widget-tester-frontend",
"version": "1.3.1-next",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test --no-watch --code-coverage --browsers=ChromeHeadlessNoSandbox",
"lint": "ng lint",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.0",
"@angular/cdk": "^20.2.3",
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/material": "^20.2.3",
"@angular/platform-browser": "^20.3.0",
"@angular/platform-browser-dynamic": "^20.3.0",
"@angular/router": "^20.3.0",
"@fortawesome/fontawesome-free": "^7.0.1",
"@katoid/angular-grid-layout": "^3.1.0",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"rxjs": "7.8.2",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^20.2.0",
"@angular-eslint/eslint-plugin": "^20.2.0",
"@angular-eslint/eslint-plugin-template": "^20.2.0",
"@angular-eslint/schematics": "^20.2.0",
"@angular-eslint/template-parser": "^20.2.0",
"@angular/build": "^20.3.1",
"@angular/cli": "^20.3.1",
"@angular/compiler-cli": "^20.3.0",
"@eslint/js": "^9.35.0",
"@types/jasmine": "~5.1.9",
"@types/node": "^24.3.2",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"angular-eslint": "^20.2.0",
"eslint": "9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.2.0",
"husky": "^9.1.7",
"jasmine-core": "~5.10.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"ts-node": "~10.9.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.43.0"
},
"lint-staged": {
"**/*.{html,ts}": "eslint --fix"
}
}