forked from opendatahub-io/odh-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.35 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.35 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
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
{
"name": "odh-dashboard",
"version": "2.0.0",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/opendatahub-io/odh-dashboard.git"
},
"homepage": "https://github.com/opendatahub-io/odh-dashboard#readme",
"bugs": {
"url": "https://github.com/opendatahub-io/odh-dashboard/issues"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"backend",
"packages/*",
"frontend",
"frontend/src"
],
"scripts": {
"build": "run-p -l build:*",
"build:backend": "npm run build --prefix packages/app-config && npm run build --prefix backend",
"build:frontend": "npm run build --prefix frontend",
"dev": "run-p -l dev:*",
"dev:backend": "cd ./backend && npm run start:dev",
"dev:frontend": "cd ./frontend && npm run start:dev",
"format": "prettier --write \"backend/**/*.ts\" \"frontend/**/*.ts\" \"frontend/**/*.tsx\"",
"make": "make",
"make:build": "make build",
"make:deploy": "make deploy",
"make:login": "make login",
"make:undeploy": "make undeploy",
"make:push": "make push",
"start": "run-p start:*",
"start:backend": "cd ./backend && npm start",
"start:frontend": "echo \"...available at ./frontend/public\"",
"test": "run-s test:backend test:frontend",
"test:backend": "cd ./backend && npm run test",
"test:frontend": "cd ./frontend && npm run test",
"test:frontend:coverage": "cd ./frontend && npm run test:coverage",
"test:frontend:unit-coverage": "cd ./frontend && npm run test:unit-coverage",
"test:backend:unit-coverage": "cd ./backend && npm run test:unit-coverage",
"test:cypress-ci": "cd ./frontend && npm run test:cypress-ci -- ",
"test:unit": "turbo run test:unit",
"lint:frontend:backend": "run-p test:lint:*",
"test:lint:backend": "cd ./backend && npm run test:lint",
"test:lint:frontend": "cd ./frontend && npm run test:lint",
"test:fix": "run-s test:fix-backend test:fix-frontend",
"test:fix-backend": "cd ./backend && npm run test:fix",
"test:fix-frontend": "cd ./frontend && npm run test:fix",
"commit:skip-lint-hook": "SKIP_LINT_HOOK=true git commit",
"commit:force-lint-hook": "FORCE_LINT_HOOK=true git commit",
"prepare": "husky",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test-unit": "turbo run test-unit",
"test-unit-coverage": "turbo run test-unit-coverage && node scripts/unit-test-coverage-aggregator.js",
"test:contract": "turbo run test:contract --concurrency=1",
"cypress:server": "turbo run cypress:server",
"cypress:server:dev": "turbo run cypress:server:dev",
"cypress:server:build": "turbo run cypress:server:build",
"cypress:server:build:coverage": "turbo run cypress:server:build:coverage",
"postinstall": "turbo run install:module --ui=stream",
"test-e2e:dev": "concurrently --hide=0 -k -s first \"turbo run start:dev\" \"turbo run start:dev:wait && npm run test:cypress:e2e --prefix frontend\"",
"start:dev": "turbo run start:dev",
"start:dev:ext": "turbo run start:dev:ext"
},
"dependencies": {
"@kubernetes/client-node": "^0.12.2",
"@openshift/dynamic-plugin-sdk-utils": "^5.0.1",
"@types/tar": "^6.1.13",
"jsonpath-plus": "^10.3.0",
"tough-cookie": "^4.1.3",
"ws": "^8.18.1"
},
"devDependencies": {
"cross-env": "^10.1.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all": "^4.1.5",
"turbo": "^2.4.2"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx,md}": [
"npx eslint --max-warnings 0"
]
},
"overrides": {
"@openshift/dynamic-plugin-sdk-utils": {
"react-redux": "^8.0.4",
"react-router": "^7.6.2",
"react-router-dom": "^7.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@patternfly/react-core": "^6.4.0",
"@patternfly/react-icons": "^6.4.0",
"@patternfly/react-styles": "^6.4.0",
"@patternfly/react-table": "^6.4.0",
"@patternfly/react-virtualized-extension": "^6.2.0"
},
"@patternfly/react-topology": {
"react": "^18.2.0"
},
"react-router": "^7.6.2",
"ws": "^8.18.1",
"dompurify": "^3.2.4",
"@types/tar": "^6.1.13",
"jsonpath-plus": "^10.3.0",
"tough-cookie": "^4.1.3",
"redux": "^4.2.0",
"form-data": "^4.0.4"
}
}