-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
{
"name": "dci-ui",
"description": "DCI static web app",
"private": true,
"author": "Guillaume Vincent <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/redhat-cip/dci-ui"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@patternfly/patternfly": "^6.1.0",
"@patternfly/react-core": "^6.1.0",
"@patternfly/react-icons": "^6.1.0",
"@patternfly/react-table": "^6.1.0",
"@patternfly/react-tokens": "^6.1.0",
"@reduxjs/toolkit": "^2.5.0",
"async-mutex": "^0.5.0",
"file-saver": "^2.0.5",
"humanize-duration": "^3.32.1",
"interweave": "^13.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"oidc-client-ts": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-hotkeys-hook": "^4.6.1",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"react-scripts": "^5.0.1",
"recharts": "^2.15.0",
"styled-components": "^6.1.14",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.5",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"@types/react-redux": "^7.1.34",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"typescript": "^4.9.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"scripts": {
"prettier": "prettier --write src",
"start": "PORT=8000 react-scripts start",
"build": "node --version && react-scripts build",
"postbuild": "rm build/mockServiceWorker.js",
"test": "npm run lint && LANG=en_US.UTF-8 TZ=UTC vitest run",
"test:watch": "LANG=en_US.UTF-8 TZ=UTC vitest watch",
"eject": "react-scripts eject",
"lint": "eslint src"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"msw": {
"workerDirectory": "public"
}
}