generated from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 2.96 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
{
"name": "ocp-vulnerability-frontend",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=18.18.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "fec build",
"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": "fec dev",
"start:proxy": "PROXY=true fec dev",
"test": "npm run test:ct",
"test:ct": "BABEL_ENV=component TZ=UTC cypress run --component",
"test:coverage": "npx nyc report",
"verify": "npm-run-all build lint test",
"coverage:clean": "rm -rf .nyc_output coverage reports",
"coverage": "bash coverage.sh && npm run coverage:clean",
"postinstall": "ts-patch install"
},
"dependencies": {
"@patternfly/react-component-groups": "^5.2.0",
"@patternfly/react-core": "^5.4.0",
"@patternfly/react-icons": "^5.4.1",
"@patternfly/react-table": "^5.4.0",
"@redhat-cloud-services/frontend-components": "^4.2.15",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.0",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.17",
"@unleash/proxy-client-react": "^4.3.1",
"axios": "^1.7.7",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"redux": "^5.0.1",
"redux-promise-middleware": "^6.2.0",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@cypress/code-coverage": "^3.13.1",
"@cypress/react18": "^2.0.1",
"@cypress/webpack-dev-server": "^3.11.0",
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.1",
"@patternfly/patternfly": "^5.4.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@redhat-cloud-services/frontend-components-config": "^6.2.8",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"babel-plugin-istanbul": "7.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"cypress": "^13.14.2",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"npm-run-all": "4.1.5",
"strict-uri-encode": "^2.0.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended-scss": "^14.1.0",
"ts-patch": "^3.2.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2"
},
"insights": {
"appname": "ocp-vulnerability"
},
"nyc": {
"report-dir": "cypress-coverage",
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.ct.js",
"src/**/*.test.js"
],
"all": true
}
}