forked from RedHatInsights/widget-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.44 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
{
"name": "widget-layout",
"version": "0.0.1",
"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",
"static": "BETA=true PROXY=true fec static"
},
"dependencies": {
"@patternfly/react-component-groups": "^5.3.0-prerelease.1",
"@patternfly/react-core": "^5.3.3",
"@redhat-cloud-services/frontend-components": "^4.2.11",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.0",
"awesome-debounce-promise": "^2.1.0",
"classnames": "^2.5.1",
"jotai": "^2.8.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.4.4",
"react-router-dom": "^6.24.0"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@redhat-cloud-services/frontend-components-config": "^6.0.18",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.12",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/react": "17.0.80",
"@types/react-dom": "^18.3.0",
"@types/react-grid-layout": "^1.3.5",
"@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",
"eslint": "8.57.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"rimraf": "^3.0.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.3.0",
"stylelint-scss": "3.21.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.2",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "widget-layout"
}
}