forked from RedHatInsights/edge-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.63 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
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
130
131
132
{
"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 -p 8002",
"test": "TZ=UTC jest --verbose --no-cache",
"verify": "npm-run-all build lint test",
"prepare": "husky install",
"updateSnapshot": "jest --updateSnapshot"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/stories/*"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@data-driven-forms/|@openshift|lodash-es|@patternfly/|@redhat-cloud-services/|uuid/|p-all)).*$"
],
"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.2",
"@data-driven-forms/pf4-component-mapper": "^3.19.2",
"@data-driven-forms/react-form-renderer": "^3.19.2",
"@patternfly/patternfly": "^4.222.4",
"@patternfly/quickstarts": "^2.3.2",
"@patternfly/react-charts": "^6.94.15",
"@patternfly/react-core": "^4.267.6",
"@patternfly/react-icons": "^4.93.3",
"@patternfly/react-styles": "^4.92.3",
"@patternfly/react-table": "^4.112.6",
"@patternfly/react-tokens": "^4.94.3",
"@redhat-cloud-services/frontend-components": "^3.11.2",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.14",
"@redhat-cloud-services/frontend-components-utilities": "^3.7.4",
"@redhat-cloud-services/host-inventory-client": "^1.2.3",
"@scalprum/react-core": "^0.3.3",
"@unleash/proxy-client-react": "^3.5.1",
"chai-sorted": "^0.2.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"p-all": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.4",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.3",
"unleash-proxy-client": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@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.13",
"@cypress/code-coverage": "^3.10.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.6",
"@redhat-cloud-services/frontend-components-config": "^4.7.3",
"@testing-library/react": "^12.1.5",
"@webpack-cli/serve": "^1.7.0",
"babel-jest": "^29.4.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.3",
"cypress": "^10.11.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prop-types": "^15.8.1",
"redux-mock-store": "^1.5.4",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"stylelint": "^15.10.1",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-scss": "^4.3.0",
"webpack": "^5.76.1",
"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"
}
}