-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.36 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
{
"name": "ciboard",
"version": "0.1.0",
"private": true,
"license": "LGPL-3.0-or-later",
"contributors": [
"Andrei Stepanov <astepano@redhat.com>",
"Matěj Grabovský <mgrabovs@redhat.com>"
],
"dependencies": {
"@apollo/client": "^3.7.17",
"@patternfly/react-charts": "^7.1.1",
"@patternfly/react-core": "^5.1.1",
"@patternfly/react-icons": "^5.1.1",
"@patternfly/react-table": "^5.1.1",
"@reduxjs/toolkit": "^2.2.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"axios": "^1.4.0",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"graphql": "^16.7.1",
"immutability-helper": "^3.1.1",
"linkify-react": "^4.1.1",
"linkifyjs": "^4.1.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.43",
"pako": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.11.2",
"react-scripts": "^5.0.1",
"react-use-localstorage": "^3.5.3",
"redux": "^5.0.1",
"typescript": "^5.1.3",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"web-vitals": "^3.4.0",
"xml2js-parser": "^1.1.1"
},
"overrides": {
"typescript": "^5.1.3",
"@svgr/webpack": "$@svgr/webpack"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "TZ=Europe/Prague react-scripts test",
"eslint": "eslint .",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/linkifyjs": "^2.1.4",
"@types/lodash": "^4.14.196",
"@types/moment-duration-format": "^2.2.3",
"@types/pako": "^2.0.0",
"@types/react-addons-update": "^0.14.21",
"@types/react-linkify": "^1.0.1",
"@types/shell-quote": "^1.7.1",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.7.17"
}
}