-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.41 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
{
"name": "skupper-web-console",
"version": "1.8.0",
"description": "Skupper Web Console",
"license": "Apache-2.0",
"keywords": [
"skupper",
"console",
"monitoring",
"observability",
"connectivity",
"openshift"
],
"repository": {
"type": "git",
"url": "git+https://github.com/skupperproject/skupper-console.git"
},
"bugs": {
"url": "https://github.com/skupperproject/skupper-console/issues"
},
"private": true,
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "ENABLE_MOCK_SERVER=true jest --config jest.config.ts",
"coverage": "yarn test --coverage --collectCoverageFrom='src/**/*.{tsx,ts}'",
"cy:open": "cypress open",
"cy:run": "cypress run",
"ci": "start-test 3000 cy:run",
"lint": "eslint src --ext .ts,.tsx --cache",
"lint-fix": "yarn lint --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,json,css}'",
"bundle-report": "STATS=server yarn build",
"find-unused-modules": "ts-prune",
"prepare": "husky",
"commit": "git-cz"
},
"dependencies": {
"@antv/g6": "^5.0.15",
"@nivo/sankey": "^0.87.0",
"@patternfly/patternfly": "^5.3.1",
"@patternfly/react-charts": "^7.3.0",
"@patternfly/react-core": "^5.3.4",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-table": "5.3.4",
"@tanstack/react-query": "^5.52.2",
"axios": "^1.7.5",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.26.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cypress": "^13.13.3",
"cz-git": "^1.9.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"miragejs": "^0.1.48",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": ">=18.17.1",
"yarn": ">=1.22.10"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"browserslist": [
">10%",
"last 2 versions",
"not ie <= 11"
]
}