forked from kubernetes/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 5.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "kubernetes-dashboard",
"version": "2.7.0",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/kubernetes/dashboard.git"
},
"engines": {
"node": ">=18.14.0"
},
"engineStrict": true,
"packageManager": "[email protected]",
"scripts": {
"start": "make serve",
"start:https": "make serve-https",
"build:prod": "make build",
"fix": "yarn fix:i18n && yarn fix:html && yarn fix:scss && yarn fix:ts",
"fix:i18n": "ng run kubernetes-dashboard:extract-i18n-merge",
"fix:html": "prettier **.html --write",
"fix:scss": "stylelint **/*.{css,scss} --fix",
"fix:ts": "eslint . --fix",
"check": "yarn check:i18n && yarn check:html && yarn check:scss && yarn check:ts",
"check:i18n": "yarn fix:i18n",
"check:html": "prettier **.html --check",
"check:scss": "stylelint **/*.{css,scss}",
"check:ts": "eslint .",
"test": "npx jest -c jest.config.js",
"coverage": "npx jest -c jest.config.js --coverage",
"cypress": "wait-on -v -i 10000 http-get://127.0.0.1:8080/api/v1/node http://127.0.0.1:8080/config http://127.0.0.1:8080 && npx cypress run",
"e2e": "concurrently -kill-others --success first \"yarn start\" \"yarn cypress\"",
"e2e:headed": "concurrently -kill-others --success first \"yarn start:e2e\" \"wait-on -i 10000 http://127.0.0.1:8080 && npx cypress run --headed\"",
"analyze": "ng build --stats-json && webpack-bundle-analyzer dist/stats.json"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"src/**/*.scss": [
"stylelint --fix"
],
"src/**/*.html": [
"prettier --write"
]
},
"dependencies": {
"@angular/animations": "16.2.1",
"@angular/cdk": "14.2.7",
"@angular/common": "16.2.1",
"@angular/compiler": "16.2.1",
"@angular/core": "16.2.1",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "16.2.1",
"@angular/localize": "16.2.1",
"@angular/material": "14.2.7",
"@angular/platform-browser": "16.2.1",
"@angular/platform-browser-dynamic": "16.2.1",
"@angular/router": "16.2.1",
"@swimlane/ngx-charts": "20.5.0",
"ace-builds": "1.34.2",
"core-js": "3.37.1",
"crop-url": "4.0.1",
"d3-shape": "3.2.0",
"d3-time-format": "4.1.0",
"file-saver": "2.0.5",
"js-base64": "3.7.7",
"js-yaml": "4.1.0",
"jwt-decode": "4.0.0",
"material-design-icons": "3.0.1",
"ngx-cookie-service": "18.0.0",
"ngx-pipes": "3.2.2",
"normalize.css": "8.0.1",
"roboto-fontface": "0.10.0",
"rxjs": "7.8.1",
"rxjs-compat": "6.6.7",
"sockjs-client": "1.6.1",
"strip-ansi": "7.1.0",
"systemjs": "6.15.1",
"tslib": "2.6.3",
"web-animations-js": "2.3.2",
"xterm": "5.3.0",
"xterm-addon-fit": "0.8.0",
"zone.js": "0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular/cli": "16.2.0",
"@angular/compiler-cli": "16.2.1",
"@angular/language-service": "16.2.1",
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/register": "7.24.6",
"@cypress/webpack-preprocessor": "6.0.1",
"@graphql-mesh/cli": "0.90.10",
"@graphql-mesh/openapi": "0.100.12",
"@graphql-mesh/runtime": "0.99.8",
"@graphql-mesh/transform-replace-field": "0.98.7",
"@types/d3": "7.4.3",
"@types/d3-scale": "4.0.8",
"@types/file-saver": "2.0.7",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/jest": "29.5.12",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"codelyzer": "6.0.2",
"concurrently": "8.2.2",
"cypress": "13.11.0",
"cypress-fail-fast": "7.1.0",
"del": "7.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-rxjs": "5.0.3",
"git-describe": "4.1.1",
"graphql": "16.8.1",
"husky": "9.0.11",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-preset-angular": "14.1.0",
"license-check-and-add": "4.0.5",
"lint-staged": "15.2.5",
"lodash-es": "4.17.21",
"minimatch": "9.0.4",
"minimist": "1.2.8",
"ng-extract-i18n-merge": "2.12.0",
"node-gyp": "10.1.0",
"prettier": "3.3.2",
"q": "1.5.1",
"raw-loader": "4.0.2",
"run-node": "2.0.0",
"sass": "1.77.4",
"sass-loader": "14.2.1",
"semver": "7.6.2",
"source-map-explorer": "2.5.3",
"stylelint": "16.6.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-no-unsupported-browser-features": "8.0.1",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"tar": "7.2.0",
"through2": "4.0.2",
"ts-jest": "29.1.4",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.1.6",
"wait-on": "7.2.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "5.0.4"
},
"overrides": {
"colors": "1.4.0"
}
}