forked from RHEnVision/provisioning-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.42 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
{
"name": "provisioning-frontend",
"version": "0.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"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": "PROXY=true ROUTES_PATH=config/routes.config.js fec dev",
"start:stage": "PROXY=true fec dev",
"start:federated": "fec static",
"test": "jest",
"verify": "npm-run-all build lint test",
"dev": "HOT=true PROXY=true ROUTES_PATH=config/routes.config.js fec dev --clouddotEnv stage --uiEnv beta"
},
"dependencies": {
"@patternfly/react-core": "4.276.8",
"@redhat-cloud-services/frontend-components": "^3.9.35",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.14",
"@redhat-cloud-services/frontend-components-utilities": "^3.5.0",
"@unleash/proxy-client-react": "^3.5.2",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.39.2",
"react-redux": "8.0.2",
"react-router-dom": "5.2.0",
"react-tracked": "^1.7.10",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.3.0",
"@redhat-cloud-services/frontend-components-config": "^4.7.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "28.1.3",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.9.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"msw": "^0.46.0",
"npm-run-all": "4.1.5",
"prop-types": "15.8.1",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.3.0",
"stylelint-scss": "3.21.0",
"webpack-bundle-analyzer": "4.6.1"
},
"insights": {
"appname": "provisioning",
"buildrepo": "git@github.com:RedHatInsights/provisioning-frontend-build.git"
}
}