forked from kubernetes/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
196 lines (196 loc) · 8.6 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "kubernetes-dashboard",
"version": "2.0.0-beta6",
"repository": {
"type": "git",
"url": "https://github.com/kubernetes/dashboard.git"
},
"license": "Apache-2.0",
"scripts": {
"start": "concurrently \"npm run start:backend --kubernetes-dashboard:sidecar_host=$npm_package_config_sidecar_host\" \"npm run start:frontend --kubernetes-dashboard:bind_address=$npm_package_config_bind_address --kubernetes-dashboard:port=$npm_package_config_port\"",
"start:https": "concurrently \"npm run start:backend:https --kubernetes-dashboard:sidecar_host=$npm_package_config_sidecar_host\" \"npm run start:frontend:https --kubernetes-dashboard:bind_address=$npm_package_config_bind_address --kubernetes-dashboard:port=$npm_package_config_port\"",
"start:frontend": "npm run postversion && ng serve --aot --progress=false --proxy-config aio/proxy.conf.json --host=$npm_package_config_bind_address --port $npm_package_config_port",
"start:frontend:https": "node aio/scripts/version.js && ng serve --progress=false --aot --proxy-config aio/https-proxy.conf.json --ssl --host=$npm_package_config_bind_address --port $npm_package_config_port",
"start:backend": "KUBECONFIG=${KUBECONFIG:-$npm_package_config_kubeconfig}; gulp serve --kubeconfig $KUBECONFIG --sidecarServerHost $npm_package_config_sidecar_host",
"start:backend:https": "KUBECONFIG=${KUBECONFIG:-$npm_package_config_kubeconfig}; gulp serve --kubeconfig $KUBECONFIG --autoGenerateCerts true --sidecarServerHost $npm_package_config_sidecar_host",
"start:prod": "npm run build && ./$npm_package_config_dashboard_binary_path --kubeconfig $npm_package_config_kubeconfig --locale-config $npm_package_config_dashboard_locale_config --auto-generate-certificates --bind-address $npm_package_config_bind_address --sidecar-host $npm_package_config_sidecar_host --port $npm_package_config_port",
"build": "./aio/scripts/build.sh",
"build:cross": "./aio/scripts/build.sh -c",
"build:frontend": "npm run clean && ng build --aot --prod --outputPath=$npm_package_config_frontend_build_dir",
"build:backend": "npm run clean && gulp backend:prod",
"build:backend:cross": "npm run clean && gulp backend:prod:cross",
"docker:build": "npm run clean && npm run build:cross && gulp docker-image:release:cross",
"docker:build:head": "npm run clean && npm run build:cross && gulp docker-image:head:cross",
"docker:push": "npm run docker:build && gulp push-to-docker:release:cross",
"docker:push:head": "npm run docker:build:head && gulp push-to-docker:head:cross",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run",
"test": "npm run test:frontend && npm run test:backend && npm run e2e",
"test:frontend": "ng test --karma-config ./aio/karma.conf.js --watch=false",
"test:frontend:coverage": "ng test --karma-config ./aio/karma.conf.js --watch=false --code-coverage",
"test:frontend:watch": "ng test --karma-config ./aio/karma.conf.js",
"test:backend": "go test github.com/kubernetes/dashboard/src/app/backend/...",
"test:backend:coverage": "./aio/scripts/coverage-backend.sh",
"test:coverage": "npm run test:frontend:coverage && npm run test:backend:coverage",
"e2e": "concurrently -kill-others --success first \"npm run start\" \"wait-on http://localhost:8080 && npm run cy:run\"",
"cluster:start": "./aio/scripts/start-cluster.sh",
"cluster:stop": "./aio/scripts/stop-cluster.sh",
"check": "concurrently \"npm run check:backend\" \"npm run check:codegen\" \"npm run check:frontend\" \"npm run check:license\" \"npm run check:i18n\"",
"check:backend": "golangci-lint run -c .golangci.yml src/app/backend/...",
"check:codegen": "aio/scripts/verify-codegen.sh",
"check:frontend": "concurrently \"npm run check:frontend:ts\" \"npm run check:frontend:scss\" \"npm run check:frontend:html\"",
"check:frontend:ts": "gts check",
"check:frontend:scss": "./aio/scripts/format.sh --styles --check && ./node_modules/sass-lint/bin/sass-lint.js -c .sass-lint.yml 'src/app/frontend/**/*.scss' -v -q",
"check:frontend:html": "./aio/scripts/format.sh --html --check",
"check:license": "gulp check-license-headers",
"check:i18n": "ng xi18n --outFile ../i18n/messages.xlf && aio/scripts/xliffmerge.sh",
"fix": "concurrently \"npm run fix:backend\" \"npm run fix:frontend\" \"npm run fix:license\" \"npm run fix:i18n\"",
"fix:backend": "golangci-lint run -c .golangci.yml --fix src/app/backend/...",
"fix:frontend": "concurrently \"npm run fix:frontend:ts\" \"npm run fix:frontend:scss\" \"npm run fix:frontend:html\"",
"fix:frontend:ts": "gts fix",
"fix:frontend:scss": "scssfmt -r 'src/**/*.scss'",
"fix:frontend:html": "./aio/scripts/format.sh --html",
"fix:license": "gulp update-license-headers",
"fix:i18n": "ng xi18n --outFile ../i18n/messages.xlf && aio/scripts/xliffmerge.sh",
"clean": "rm -rf .go_workspace .tmp coverage dist npm-debug.log",
"postversion": "node aio/scripts/version.js",
"postinstall": "node aio/scripts/version.js && command -v golangci-lint >/dev/null 2>&1 || { curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0; } && go mod download"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"gts fix",
"git add"
],
"src/**/*.scss": [
"scssfmt",
"git add"
],
"src/**/*.go": [
"golangci-lint run -c .golangci.yml --fix",
"git add"
],
"src/**/*.html": [
"./aio/scripts/pre-commit-i18n.sh",
"git add"
]
},
"xliffmergeOptions": {
"srcDir": "i18n",
"genDir": "i18n",
"defaultLanguage": "en",
"languages": [
"fr",
"ja",
"ko",
"zh"
],
"beautifyOutput": true
},
"dependencies": {
"@angular/animations": "8.0.3",
"@angular/cdk": "8.2.3",
"@angular/common": "8.0.3",
"@angular/compiler": "8.0.3",
"@angular/core": "8.0.3",
"@angular/flex-layout": "8.0.0-beta.27",
"@angular/forms": "8.0.3",
"@angular/http": "7.2.15",
"@angular/material": "8.2.3",
"@angular/platform-browser": "8.0.3",
"@angular/platform-browser-dynamic": "8.0.3",
"@angular/router": "8.0.3",
"@types/c3": "0.7.1",
"@types/d3": "5.7.2",
"@types/d3-scale": "2.1.1",
"@types/file-saver": "2.0.1",
"@types/highlight.js": "^9.12.3",
"ace-builds": "1.4.7",
"c3": "0.7.11",
"core-js": "3.3.3",
"d3": "5.12.0",
"file-saver": "2.0.2",
"hammerjs": "2.0.8",
"highlight.js": "^9.16.2",
"js-yaml": "3.13.1",
"material-design-icons": "3.0.1",
"ng2-ace-editor": "0.3.9",
"ngx-cookie-service": "2.2.0",
"ngx-filter-pipe": "2.1.2",
"normalize.css": "8.0.1",
"roboto-fontface": "0.10.0",
"systemjs": "6.1.4",
"rxjs": "6.5.3",
"rxjs-compat": "6.5.3",
"sockjs-client": "1.4.0",
"tslib": "^1.9.0",
"web-animations-js": "2.3.2",
"xterm": "3.14.5",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.18",
"@angular/cli": "8.3.19",
"@angular/compiler-cli": "8.0.3",
"@angular/language-service": "8.2.13",
"@types/jasmine": "3.4.6",
"@types/jasminewd2": "2.0.8",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.146",
"@types/node": "12.12.7",
"babel": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"codelyzer": "4.5.0",
"concurrently": "5.0.0",
"cypress": "3.6.1",
"del": "5.1.0",
"git-describe": "4.0.4",
"gts": "1.1.0",
"gulp": "4.0.2",
"gulp-filter": "6.0.0",
"gulp-header-license": "1.0.9",
"gulp-license-check": "1.2.1",
"husky": "3.0.9",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"js-beautify": "1.10.2",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-firefox-launcher": "1.2.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"lint-staged": "9.4.3",
"lite-server": "2.4.0",
"lodash": "4.17.15",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"ngx-i18nsupport": "0.17.1",
"node-gyp": "6.0.1",
"node-sass": "4.13.0",
"q": "1.5.1",
"raw-loader": "3.1.0",
"sass-lint": "1.13.1",
"sass-loader": "7.3.0",
"scssfmt": "1.0.7",
"semver": "6.3.0",
"source-map-explorer": "2.1.0",
"tar": "5.0.5",
"through2": "3.0.1",
"ts-node": "8.5.0",
"tslint": "5.20.1",
"typescript": "3.4.5",
"wait-on": "3.3.0",
"webpack-dev-server": "3.9.0"
},
"engines": {
"node": ">=10.9.0",
"npm": ">=6.0.0"
}
}