forked from riccardo-forina/service-accounts
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.7 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
{
"name": "service-accounts",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src",
"lint:js:fix": "eslint config src --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"patch:hosts": "fec patch-etc-hosts",
"start": "HOT=true fec dev",
"test": "jest --passWithNoTests",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "5.0.0",
"@patternfly/react-icons": "^5.0.0",
"@patternfly/react-table": "5.0.0",
"@patternfly/react-component-groups": "5.1.0-prerelease.2",
"@redhat-cloud-services/frontend-components": "^4.2.1",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.2",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.1",
"@tanstack/react-query": "^4.29.7",
"classnames": "^2.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "7.2.9",
"react-router-dom": "^6.3.0",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.6",
"@redhat-cloud-services/frontend-components-config": "^6.3.1",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.4",
"@tanstack/eslint-plugin-query": "^4.29.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^14.0.0",
"@types/react": "17.0.39",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-jest": "27.0.5",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.48.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"rimraf": "^3.0.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "4.4.2"
},
"insights": {
"appname": "service-accounts",
"appUrl": "/iam/service-accounts"
}
}