forked from openshift/hac-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.62 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
{
"name": "hac-dev",
"version": "0.5.1",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=8.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": "yarn build && yarn lint && yarn test",
"lint": "yarn lint:ts && yarn lint:sass",
"lint:ts": "eslint . --ext .js,.jsx,.ts,.tsx --color",
"lint:ts:fix": "yarn lint:ts --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"dev": "yarn start:prod:beta",
"federated": "yarn start:federated",
"start": "webpack serve --config config/dev.webpack.config.js",
"start:beta": "BETA=true yarn start",
"start:federated": "BETA=true fec static --config config/dev.webpack.config.js",
"start:prod": "ENVIRONMENT=prod yarn start",
"start:prod:beta": "ENVIRONMENT=prod yarn start:beta",
"test": "jest",
"verify": "if test \"$IS_PR\" = \"true\" ; then yarn build; else yarn build && yarn lint && yarn coverage; fi",
"prepare": "husky install",
"pact": "rm -rf pact/pacts && jest --runInBand --roots=\"./pact-tests\" ",
"postinstall": "ts-patch install"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@openshift/dynamic-plugin-sdk": "^4.0.0",
"@openshift/dynamic-plugin-sdk-extensions": "^1.3.0",
"@openshift/dynamic-plugin-sdk-utils": "^4.1.0",
"@patternfly/patternfly": "5.1.0",
"@patternfly/quickstarts": "5.0.0",
"@patternfly/react-catalog-view-extension": "5.0.0",
"@patternfly/react-core": "5.1.1",
"@patternfly/react-table": "5.1.1",
"@patternfly/react-topology": "5.1.0",
"@patternfly/react-virtualized-extension": "5.0.0",
"@redhat-cloud-services/frontend-components": "^4.0.14",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.4",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.2",
"@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-alpha11",
"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": "18.2.0",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^11.12.0",
"react-redux": "^7.2.6",
"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": "3.0.1",
"@pact-foundation/pact": "^12.1.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.3",
"@redhat-cloud-services/frontend-components-config": "^6.0.5",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.4",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@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": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "8.51.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-loader": "4.0.2",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"jest-pact": "^0.11.0",
"lint-staged": "^13.2.0",
"node-gyp": "^9.3.1",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"stylelint": "15.11.0",
"stylelint-config-recommended-scss": "13.0.0",
"stylelint-scss": "5.2.1",
"ts-jest": "^27.0.7",
"ts-patch": "^3.0.2",
"typescript": "^4.9.5",
"unleash-proxy-client": "^2.3.0",
"webpack-bundle-analyzer": "4.4.2",
"whatwg-fetch": "^3.6.2"
},
"insights": {
"appname": "hac-dev"
}
}