forked from kubermatic/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 5.31 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
{
"name": "kubermatic-dashboard",
"description": "Kubermatic Dashboard",
"version": "2.21.0",
"type": "module",
"license": "proprietary",
"repository": "https://github.com/kubermatic/dashboard",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.5.5"
},
"scripts": {
"start": "npm run vi && ng s -c=default-\"${KUBERMATIC_EDITION:=ee}\" --host \"${KUBERMATIC_HOST:=localhost}\"",
"start:local": "npm run vi && ng s -c=default-\"${KUBERMATIC_EDITION:=ee}\" --proxy-config=proxy-local.conf.cjs --host \"${KUBERMATIC_HOST:=localhost}\"",
"start:prod": "npm run vi && ng s -c=production-\"${KUBERMATIC_EDITION:=ee}\"",
"start:prod:local": "npm run vi && ng s -c=production-\"${KUBERMATIC_EDITION:=ee}\" --proxy-config=proxy-local.conf.cjs",
"start:e2e": "npm run vi && ng s -c=e2e-\"${KUBERMATIC_EDITION:=ee}\"",
"start:e2e:local": "npm run vi && ng s -c=e2e-local-\"${KUBERMATIC_EDITION:=ee}\" --proxy-config=proxy-local.conf.cjs",
"start:e2e:mock": "concurrently \"npm run start:mock-server\" \"npm run vi && ng s -c=e2e-mock-\"${KUBERMATIC_EDITION:=ee}\" --proxy-config=proxy-local.conf.cjs\"",
"start:mock-server": "json-server --watch fixtures/db.json --routes fixtures/routes.json --port 8080 -q",
"build": "npm run vi && ng b -c=production-\"${KUBERMATIC_EDITION:=ee}\"",
"build:themes": "npm run build && ./hack/extract-themes.sh",
"test": "jest",
"test:ci": "jest --coverage -i",
"test:watch": "jest --watch",
"cy": "cypress run --record false -b chrome -e KUBERMATIC_EDITION=\"${KUBERMATIC_EDITION:=ee}\",MOCKS=\"${CYPRESS_MOCKS:='false'}\"",
"e2e": "start-server-and-test start:e2e http-get://localhost:8000 cy",
"e2e:local": "start-server-and-test start:e2e:local http-get://localhost:8000 cy",
"e2e:mock": "start-server-and-test start:e2e:mock http-get://localhost:8000 cy",
"check": "npm run check:ts && npm run check:scss && npm run check:dependency-licenses",
"check:ts": "gts lint",
"check:scss": "stylelint \"src/**/*.scss\"",
"check:dependency-licenses": "./hack/check-licenses.sh",
"fix": "npm run fix:ts && npm run fix:scss && npm run fix:html && npm run fix:license",
"fix:ts": "gts fix",
"fix:scss": "stylelint \"src/**/*.scss\" --fix",
"fix:html": "html-beautify --replace -f \"src/**/*.html\"",
"fix:license": "license-check-and-add add -r 2022",
"clean": "gts clean",
"vi": "node version.js",
"postinstall": "ngcc && rm cypress/**/*.js && rm cypress/tsconfig.json",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.ts": [
"gts fix"
],
"src/**/*.scss": [
"stylelint --fix"
],
"src/**/*.html": [
"html-beautify --replace -f "
]
},
"dependencies": {
"@angular/animations": "14.0.0",
"@angular/cdk": "14.0.0",
"@angular/common": "14.0.0",
"@angular/compiler": "14.0.0",
"@angular/core": "14.0.0",
"@angular/flex-layout": "13.0.0-beta.38",
"@angular/forms": "14.0.0",
"@angular/localize": "14.0.0",
"@angular/material": "14.0.0",
"@angular/platform-browser": "14.0.0",
"@angular/platform-browser-dynamic": "14.0.0",
"@angular/router": "14.0.0",
"@fontsource/inconsolata": "4.5.6",
"@fontsource/roboto": "4.5.7",
"@fontsource/roboto-mono": "4.5.7",
"@fontsource/ubuntu": "4.5.10",
"@swimlane/ngx-charts": "20.1.0",
"buffer": "6.0.3",
"core-js": "3.22.8",
"country-code-lookup": "0.0.20",
"cron-validator": "1.3.1",
"flag-icon-css": "4.1.7",
"git-describe": "4.1.1",
"jquery": "3.6.0",
"js-base64": "3.7.2",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"modern-normalize": "1.1.0",
"moment": "2.29.3",
"monaco-editor": "0.33.0",
"ngx-clipboard": "15.1.0",
"ngx-cookie-service": "14.0.0",
"ngx-filter-pipe": "2.1.2",
"ngx-monaco-editor": "12.0.0",
"rxjs": "7.5.5",
"rxjs-compat": "6.6.7",
"semver": "7.3.7",
"swagger-ui": "4.8.1",
"zone.js": "0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.2",
"@angular/cli": "14.0.1",
"@angular/compiler-cli": "14.0.0",
"@bahmutov/add-typescript-to-cypress": "2.1.2",
"@cypress/webpack-preprocessor": "5.11.1",
"@jest/globals": "28.1.1",
"@types/jest": "28.1.2",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.182",
"@types/node": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.27.1",
"browserlist": "1.0.1",
"btoa": "1.2.1",
"concurrently": "7.2.2",
"cypress": "9.7.0",
"cypress-fail-fast": "3.4.1",
"del": "6.1.1",
"eslint": "8.17.0",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-rxjs": "5.0.2",
"gts": "3.1.0",
"husky": "8.0.1",
"jest": "28.1.1",
"jest-preset-angular": "12.1.0",
"js-beautify": "1.14.4",
"json-server": "0.17.0",
"license-check-and-add": "4.0.5",
"license-compliance": "1.2.3",
"lint-staged": "13.0.1",
"ng2-mock-component": "0.2.0",
"start-server-and-test": "1.14.0",
"stream": "0.0.2",
"stylelint": "14.9.1",
"stylelint-config-standard-scss": "4.0.0",
"stylelint-no-unsupported-browser-features": "5.0.3",
"stylelint-order": "5.0.0",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"tslib": "2.4.0",
"typescript": "4.6.4"
}
}