forked from openshift/hac-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.33 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
{
"name": "hac-dev",
"version": "0.1.0",
"private": false,
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"analyze": "NODE_ENV=production webpack --config config/prod.webpack.config.js --env analyze=true",
"build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"coverage": "jest --coverage --runInBand --detectOpenHandles --forceExit --testPathIgnorePatterns=/pact-tests",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint . --ext .js,.jsx,.ts,.tsx --color",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"start": "webpack serve --config config/dev.webpack.config.js",
"start:beta": "BETA=true npm start",
"start:federated": "BETA=true fec static --config config/dev.webpack.config.js",
"start:prod": "ENVIRONMENT=prod npm run start",
"start:prod:beta": "ENVIRONMENT=prod npm run start:beta",
"test": "jest",
"verify": "if test \"$IS_PR\" = \"true\" ; then npm run build; else npm-run-all build lint coverage; fi",
"prepare": "husky install",
"pact": "rm -rf pact/pacts && jest --runInBand --roots=\"./pact-tests\" "
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@openshift/dynamic-plugin-sdk": "^2.0.1",
"@openshift/dynamic-plugin-sdk-extensions": "^1.1.0",
"@openshift/dynamic-plugin-sdk-utils": "^1.1.1",
"@patternfly/patternfly": "5.0.2",
"@patternfly/quickstarts": "5.0.0",
"@patternfly/react-catalog-view-extension": "5.0.0",
"@patternfly/react-core": "5.0.0",
"@patternfly/react-table": "5.0.0",
"@patternfly/react-topology": "5.0.0",
"@patternfly/react-virtualized-extension": "5.0.0",
"@redhat-cloud-services/frontend-components": "^3.8.6",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.2",
"@redhat-cloud-services/frontend-components-utilities": "^3.2.8",
"@unleash/proxy-client-react": "^3.4.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.8",
"file-saver": "1.3.x",
"formik": "^2.2.9",
"formik-pf": "^0.0.1-alpha10",
"git-url-parse": "^13.1.0",
"history": "5.3.0",
"i18next": "^19.8.3",
"js-base64": "^3.7.5",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"react": "17.0.2",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.12.0",
"react-router-dom": "6.3.0",
"react-virtualized": "^9.22.3",
"redux-thunk": "^2.4.1",
"showdown": "^1.9.0",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@openshift/dynamic-plugin-sdk-webpack": "1.0.0-alpha3",
"@pact-foundation/pact": "^11.0.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.1",
"@redhat-cloud-services/frontend-components-config": "^4.6.14",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.0.0",
"@types/git-url-parse": "^9.0.1",
"@types/history": "^4.7.9",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "4.17.x",
"@types/react-helmet": "5.x",
"@types/react-router-dom": "^5.3.2",
"@types/react-virtualized": "9.x",
"@types/uuid": "^9.0.0",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "7.29.0",
"eslint-loader": "4.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"jest-pact": "^0.10.3",
"lint-staged": "^13.2.0",
"node-gyp": "^9.3.1",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"unleash-proxy-client": "^2.3.0",
"webpack-bundle-analyzer": "4.4.2",
"whatwg-fetch": "^3.6.2"
},
"insights": {
"appname": "hac-dev"
}
}