forked from opendatahub-io/odh-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.88 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.88 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
{
"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": ">=20.0.0"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"backend",
"packages/*",
"packages/plugins/*",
"frontend",
"frontend/src",
"frontend/src/__tests__/cypress",
"frontend/packages/*"
],
"scripts": {
"build": "turbo run build",
"build:backend": "cd ./backend && npm run build",
"build:frontend": "cd ./frontend && npm run build",
"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"
},
"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.17.1"
},
"devDependencies": {
"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": {
"frontend/**/*.{js,ts,jsx,tsx}": [
"bash -c 'cd frontend && npx eslint --max-warnings 0 \"${@#frontend/}\"' --"
],
"backend/**/*.{js,ts,json}": [
"bash -c 'cd backend && npx eslint --max-warnings 0 \"${@#backend/}\"' --"
]
},
"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.3.1",
"@patternfly/react-icons": "^6.3.1",
"@patternfly/react-styles": "^6.3.1",
"@patternfly/react-table": "^6.3.1",
"@patternfly/react-virtualized-extension": "^6.1.0"
},
"@patternfly/react-topology": {
"react": "^18.2.0"
},
"react-router": "^7.6.2",
"ws": "^8.17.1",
"dompurify": "^3.2.4",
"@types/tar": "^6.1.13",
"jsonpath-plus": "^10.3.0",
"tough-cookie": "^4.1.3"
}
}