-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.72 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
{
"name": "skupper-site-console",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:skupperproject/skupper-site-console.git",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && NODE_ENV=production yarn ts-node node_modules/.bin/webpack",
"start": "yarn clean && yarn ts-node node_modules/.bin/webpack serve",
"start-console": "./start-console.sh",
"i18n": "i18next \"src/**/*.{js,jsx,ts,tsx}\" [-oc] -c i18next-parser.config.js",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'",
"format": "prettier --write 'src/**/*.{ts,tsx,json,css}'",
"lint:fix": "eslint --ext js,ts,tsx --fix src",
"lint": "eslint src --ext .ts,.tsx --cache",
"build-and-push-image": "PUSH=1 ./build-image.sh",
"find-deadcode": "ts-prune"
},
"dependencies": {
"@patternfly/patternfly": "^5.4.2",
"@patternfly/react-component-groups": "^5.5.3",
"@patternfly/react-core": "^5.4.2",
"@patternfly/react-icons": "^5.4.0",
"@patternfly/react-table": "^5.4.8",
"@tanstack/react-query": "4.36.1",
"axios": "^1.7.7",
"i18next": "^23.16.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^4.1.2",
"react-i18next": "^11.18.6",
"yaml": "^2.6.0"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "1.6.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "1.2.0",
"@types/node": "^22.8.4",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"pluralize": "^8.0.0",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.3",
"webpack": "5.75.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.1.0"
},
"engines": {
"node": ">=18.17.1",
"yarn": ">=1.22.10"
},
"consolePlugin": {
"name": "skupper-site-console",
"version": "0.0.2",
"displayName": "Service Interconnect Site Plugin",
"description": " Service Interconnect for OpenShift console plugins.",
"exposedModules": {
"ProjectEntryTab": "./openshift/ProjectEntryTab"
}
}
}