-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.51 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
{
"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": {
"@patternfly/patternfly": "^5.4.1",
"@patternfly/react-core": "^5.4.1",
"@patternfly/react-icons": "^5.4.0",
"@patternfly/react-table": "^5.4.1",
"@patternfly/react-tokens": "^5.4.0",
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.7.7",
"file-saver": "^2.0.5",
"formik": "^2.4.6",
"humanize-duration": "^3.32.1",
"interweave": "^13.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"normalizr": "^3.6.2",
"oidc-client-ts": "^2.4.0",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^4.5.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"react-scripts": "^5.0.1",
"recharts": "^2.13.0",
"styled-components": "^6.1.13",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.7",
"@types/qs": "^6.9.16",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-loadable": "^5.5.11",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.3",
"msw": "^2.4.11",
"prettier": "^3.3.3",
"typescript": "^4.9.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3",
"webpack": "^5.95.0"
},
"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"
}
}