forked from RHEnVision/provisioning-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.58 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
{
"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": "TZ=UTC jest --verbose --no-cache",
"verify": "npm-run-all build lint test",
"analyze": "ANALYZED=true fec build",
"dev": "HOT=true PROXY=true ROUTES_PATH=config/routes.config.js fec dev --clouddotEnv stage --uiEnv beta",
"postinstall": "ts-patch install"
},
"dependencies": {
"@patternfly/react-core": "5.1.2",
"@patternfly/react-table": "5.1.2",
"@redhat-cloud-services/frontend-components": "4.2.5",
"@redhat-cloud-services/frontend-components-utilities": "4.0.9",
"@tanstack/react-query": "^4.33.0",
"@unleash/proxy-client-react": "^3.5.2",
"axios": "1.6.4",
"classnames": "^2.3.2",
"jsonata": "^2.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-tracked": "^1.7.10",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.3.0",
"@redhat-cloud-services/frontend-components-config": "6.0.12",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.11",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "29.7.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.9.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"msw": "2.0.13",
"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",
"ts-patch": "^3.1.1",
"typescript": "^5.3.3",
"undici": "^5.0.0",
"webpack-bundle-analyzer": "4.6.1"
},
"insights": {
"appname": "provisioning",
"buildrepo": "[email protected]:RedHatInsights/provisioning-frontend-build.git"
}
}