forked from openshift-assisted/assisted-installer-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.76 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
{
"name": "assisted-installer-app",
"version": "1.1.0",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"clean": "rimraf node_modules dist .cache",
"deploy": "npm-run-all build 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",
"patch:hosts": "fec patch-etc-hosts",
"start": "HOT=true fec dev --clouddotEnv=prod --uiEnv=stable",
"start:federated": "fec static",
"test": "TZ=UTC jest --verbose --no-cache",
"postinstall": "rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@openshift-assisted/locales": "2.27.1",
"@openshift-assisted/types": "2.27.1",
"@openshift-assisted/ui-lib": "2.27.1",
"@patternfly/react-core": "4.250.1",
"@patternfly/react-table": "4.111.33",
"@redhat-cloud-services/frontend-components": "^3.9.25",
"@reduxjs/toolkit": "^1.9.1",
"@sentry/browser": "^5.19.1 || ^6",
"axios": ">=0.22.0 <1.0.0",
"classnames": "^2.3.1",
"i18next": "^21.10.0",
"monaco-editor": "0.34.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "^11.18.6",
"react-monaco-editor": "^0.51.0",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.3",
"react-tagsinput": "3.20",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2",
"uuid": "^8.3.2",
"yup": "0.28.3"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.3.0",
"@redhat-cloud-services/frontend-components-config": "^4.6.33",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/react": "17.0.22",
"@types/react-dom": "17.0.22",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "27.0.5",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.18.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"rimraf": "^3.0.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"typescript": "^4.7.4",
"webpack-bundle-analyzer": "4.4.2"
},
"insights": {
"appname": "assisted-installer-app"
}
}