forked from riccardo-forina/service-accounts
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.47 KB
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
{
"name": "service-accounts",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=20.20.1",
"npm": ">=10.9.7"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src playwright/**/*.ts",
"lint:js:fix": "eslint config src playwright/**/*.ts --fix",
"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",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook --testTimeout=30000",
"test-storybook:fast": "CI=true test-storybook --excludeTags test-skip --testTimeout=30000",
"test-storybook:ci": "test-storybook --ci --excludeTags test-skip --testTimeout=30000",
"test:playwright": "playwright test"
},
"dependencies": {
"@patternfly/react-component-groups": "^6.4.0",
"@patternfly/react-core": "^6.4.1",
"@patternfly/react-data-view": "^6.4.0",
"@patternfly/react-icons": "^6.4.0",
"@patternfly/react-table": "^6.4.1",
"@redhat-cloud-services/frontend-components": "^6.1.1",
"@redhat-cloud-services/frontend-components-notifications": "^6.3.1",
"@redhat-cloud-services/frontend-components-utilities": "^6.1.1",
"@tanstack/react-query": "^4.43.0",
"@unleash/proxy-client-react": "^5.0.1",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.3.0",
"@redhat-cloud-services/frontend-components-config": "^6.8.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.57",
"@storybook/addon-docs": "^10.3.1",
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
"@storybook/react-webpack5": "^10.3.1",
"@playwright/test": "^1.58.2",
"@storybook/test-runner": "^0.24.3",
"@tanstack/eslint-plugin-query": "^4.43.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "27.5.1",
"babel-plugin-transform-imports": "^2.0.0",
"chromatic": "^13.3.5",
"css-loader": "^7.1.4",
"eslint": "8.57.1",
"eslint-plugin-storybook": "^10.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"msw": "^2.12.13",
"msw-storybook-addon": "^2.0.6",
"npm-run-all2": "5.0.2",
"rimraf": "^3.0.2",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"storybook": "^10.3.1",
"style-loader": "^4.0.0",
"stylelint": "^16.26.1",
"stylelint-config-recommended-scss": "^15.0.1",
"stylelint-scss": "^6.14.0",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "service-accounts",
"appUrl": "/iam/service-accounts"
},
"msw": {
"workerDirectory": [
"public"
]
}
}