-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.61 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
{
"name": "yunikorn-web",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=20.20.0",
"pnpm": "^11.5"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=11.0.0 <12.0.0",
"onFail": "download"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --watch=false",
"watch": "ng build --watch --configuration development",
"test:singleRun": "ng test --watch=false",
"start:host": "ng serve --host 0.0.0.0",
"build:prod": "ng build --configuration production",
"start:srv": "json-server --watch json-db.json",
"test:coverage": "ng test --coverage --watch=false",
"prettify": "prettier --config ./.prettierrc --write 'src/**/*.{js,ts,json,css,scss,md,html}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,json,css,scss,md,html}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"@angular/animations": "^21.2.0",
"@angular/cdk": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/material": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.0",
"@angular/router": "^21.2.0",
"@fontsource/roboto": "^5.2.9",
"@fortawesome/fontawesome-free": "^6.7.2",
"@types/d3-flextree": "^2.1.4",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.8",
"@types/d3-transition": "^3.0.9",
"@types/d3-zoom": "^3.0.8",
"angular-material-expansion-panel": "^0.7.2",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"color": "^5.0.3",
"d3-flextree": "^2.1.2",
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"date-fns": "^2.30.0",
"material-design-icons": "^3.0.1",
"moment": "^2.30.1",
"ngx-spinner": "^17.0.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@types/color": "^4.2.0",
"@types/node": "^20.19.29",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^8.0.3",
"jsdom": "^29.0.2",
"json-server": "^0.17.4",
"lint-staged": "^15.5.2",
"ng-mocks": "^14.15.0",
"prettier": "^3.7.4",
"typescript": "~5.9.2",
"vitest": "^4.1.4"
}
}