-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.9 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
{
"name": "widget-layout",
"version": "0.0.1",
"private": false,
"engines": {
"node": ">=16.20.2",
"npm": ">=7.24.2"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"cypress": "cypress",
"lint:js": "eslint config src cypress",
"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-proxy",
"test": "jest --passWithNoTests",
"test:playwright": "playwright test",
"test:ct": "node ./cypress/run-test.js",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test",
"static": "BETA=true PROXY=true fec static"
},
"dependencies": {
"@patternfly/react-code-editor": "^6.4.1",
"@patternfly/react-component-groups": "^6.4.0",
"@patternfly/react-core": "^6.4.1",
"@patternfly/widgetized-dashboard": "1.0.0-prerelease.6",
"@redhat-cloud-services/frontend-components": "^7.0.45",
"@redhat-cloud-services/frontend-components-notifications": "^6.3.1",
"@unleash/proxy-client-react": "^5.0.1",
"awesome-debounce-promise": "^2.1.0",
"classnames": "^2.5.1",
"jotai": "^2.18.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^2.2.2",
"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",
"@playwright/test": "1.59.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.12",
"@redhat-cloud-services/playwright-test-auth": "^0.0.2",
"@redhat-cloud-services/frontend-components-config": "^6.7.54",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.56",
"@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": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "27.5.1",
"babel-plugin-transform-imports": "^2.0.0",
"css-loader": "^7.1.2",
"cypress": "^15.0.0",
"eslint": "8.57.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all2": "5.0.2",
"rimraf": "^3.0.2",
"sass-loader": "^16.0.4",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.3.0",
"stylelint-scss": "3.21.0",
"swc-loader": "^0.2.6",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "widget-layout"
}
}