-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 3.64 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
{
"name": "@redhat-cloud-services/insights-common-typescript-root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"start": "lerna run start --stream",
"ci": "npm-run-all build lint test:ci",
"lint": "lerna run lint --stream -- --fix",
"test": "lerna run test --stream",
"test:ci": "lerna run test:ci --stream",
"release": "lerna publish --conventional-commits --no-commit-hooks --no-verify-access --yes",
"prepare": "husky install"
},
"dependencies": {
"insights-common-typescript": "file:packages/insights-common-typescript"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"@babel/core": "7.14.6",
"@lerna/project": "3.21.0",
"@oat-sa/rollup-plugin-wildcard-external": "0.1.0",
"@patternfly/react-core": "^5.0.0",
"@patternfly/react-icons": "^5.0.0",
"@patternfly/react-table": "^5.0.0",
"@patternfly/react-tokens": "^5.0.0",
"@redhat-cloud-services/frontend-components": "^4.0.0",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.0",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.0",
"@redhat-cloud-services/rbac-client": "^1.0.100",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@testing-library/dom": "7.31.2",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "7.0.0",
"@testing-library/user-event": "13.1.9",
"@types/eslint": "7.2.13",
"@types/is-url": "1.2.29",
"@types/jest": "26.0.23",
"@types/node": "14.14.31",
"@types/node-fetch": "2.5.10",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.7",
"@types/react-redux": "7.1.16",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"axios": "0.27.2",
"axios-mock-adapter": "1.19.0",
"classnames": "2.3.1",
"cross-fetch": "3.1.5",
"css-loader": "5.2.6",
"csx": "10.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-dom": "3.9.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "4.6.0",
"fetch-mock": "9.11.0",
"fetch-mock-jest": "1.5.1",
"formik": "2.2.9",
"husky": "6.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.4",
"jest-extended": "0.11.5",
"jest-mock": "26.5.2",
"lerna": "4.0.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"react": "^18.0.0",
"react-content-loader": "6.2.0",
"react-dom": "^18.0.0",
"react-fetching-library": "1.7.6",
"react-redux": "7.2.9",
"react-router-dom": "^6.16.0",
"react-test-renderer": "^18.0.0",
"react-use": "17.4.3",
"redux": "4.1.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "5.1.1",
"rimraf": "3.0.2",
"rollup": "2.52.0",
"rollup-plugin-dts": "3.0.2",
"rollup-plugin-execute": "1.1.1",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-essentials": "7.0.2",
"ts-import-plugin": "1.6.7",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"tslib": "2.3.0",
"typescript": "4.3.2",
"typestyle": "2.1.0",
"webpack": "5.39.0",
"zod": "3.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}