-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.74 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
{
"name": "astro-virtual-assistant-frontend",
"version": "0.0.1",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint",
"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",
"start:static": "HOT=true fec static",
"test": "jest",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint"
},
"dependencies": {
"@patternfly/react-core": "^5.1.2",
"@patternfly/react-icons": "^5.1.2",
"@patternfly/react-table": "^5.3.3",
"@patternfly/virtual-assistant": "1.0.0-prerelease.9",
"@redhat-cloud-services/frontend-components": "4.2.13",
"@redhat-cloud-services/frontend-components-notifications": "4.1.0",
"@redhat-cloud-services/frontend-components-utilities": "4.0.13",
"classnames": "^2.3.1",
"immer": "^10.1.1",
"react": "18.3.1",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"react-redux": "8.1.3",
"react-router-dom": "^6.22.0",
"redux": "4.2.1",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.23.5",
"@babel/preset-react": "7.24.1",
"@babel/preset-typescript": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "1.3.0",
"@redhat-cloud-services/frontend-components-config": "6.2.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.7",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.18",
"@types/redux-logger": "^3.0.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "29.7.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.55.0",
"identity-obj-proxy": "3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "4.1.5",
"prop-types": "15.8.1",
"rimraf": "^6.0.0",
"stylelint": "16.6.1",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-scss": "6.4.1",
"ts-patch": "^3.1.2",
"typescript": "^5.3.3",
"webpack-bundle-analyzer": "4.9.1"
},
"insights": {
"appname": "virtual-assistant"
}
}