forked from RedHatInsights/edge-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.97 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.97 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "edge-frontend",
"version": "1.1.0",
"private": false,
"scripts": {
"build": "webpack --config config/prod.webpack.config.js",
"build:prod": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"deploy": "npm-run-all build:prod 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",
"nightly": "npm run deploy",
"prod": "NODE_ENV=production webpack serve --config config/dev.webpack.config.js",
"start": "NODE_ENV=development webpack serve --config config/dev.webpack.config.js",
"start:proxy": "PROXY=true NODE_ENV=development webpack serve --config config/dev.webpack.config.js",
"start:federated": "BETA=true fec static --config config/dev.webpack.config.js",
"test": "TZ=UTC jest --verbose --no-cache",
"verify": "npm-run-all build lint test",
"prepare": "husky install"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/stories/*"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@data-driven-forms/|@patternfly/|@redhat-cloud-services/|uuid/)).*$"
],
"coverageDirectory": "./coverage/",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
],
"testEnvironment": "jsdom"
},
"transformIgnorePatterns": [
"/node_modules/(?!@redhat-cloud-services)"
],
"dependencies": {
"@data-driven-forms/common": "^3.19.0",
"@data-driven-forms/pf4-component-mapper": "^3.19.0",
"@data-driven-forms/react-form-renderer": "^3.19.0",
"@patternfly/patternfly": "^4.219.2",
"@patternfly/quickstarts": "^2.3.1",
"@patternfly/react-charts": "^6.94.11",
"@patternfly/react-core": "^4.250.1",
"@patternfly/react-icons": "^4.92.10",
"@patternfly/react-styles": "^4.91.10",
"@patternfly/react-table": "^4.111.33",
"@patternfly/react-tokens": "^4.93.10",
"@redhat-cloud-services/frontend-components": "^3.9.25",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.12",
"@redhat-cloud-services/frontend-components-utilities": "^3.3.7",
"@redhat-cloud-services/host-inventory-client": "^1.0.116",
"@unleash/proxy-client-react": "^3.0.0",
"chai-sorted": "^0.2.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.4",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.3",
"unleash-proxy-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.1",
"@cypress/code-coverage": "^3.10.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.6",
"@redhat-cloud-services/frontend-components-config": "^4.6.33",
"@testing-library/react": "^12.1.5",
"@webpack-cli/serve": "^1.7.0",
"babel-jest": "^29.3.1",
"babel-plugin-dual-import": "^1.2.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-imports": "^2.0.0",
"cross-fetch": "^3.1.5",
"css-loader": "^6.7.2",
"cypress": "^10.11.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"husky": "^8.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prop-types": "^15.8.1",
"redux-mock-store": "^1.5.4",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"stylelint": "^14.15.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-scss": "^4.3.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">=16.13.0",
"npm": ">=7.0.0"
},
"insights": {
"appname": "edge"
}
}