-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.23 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.23 KB
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
{
"name": "astro-virtual-assistant-frontend",
"version": "0.0.1",
"private": false,
"engines": {
"node": ">=16.20.2",
"npm": ">=7.24.2"
},
"scripts": {
"build": "fec build",
"cypress": "cypress",
"cypress:run": "cypress run --browser electron",
"cypress:run:cp": "cypress run --component",
"cypress:run:e2e": "cypress run --browser electron",
"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",
"start:dev-proxy": "HOT=true fec dev-proxy",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint",
"static": "fec static --port=8004"
},
"dependencies": {
"@patternfly/chatbot": "6.5.0",
"@patternfly/patternfly": "^6.4.0",
"@patternfly/react-core": "^6.4.0",
"@patternfly/react-icons": "^6.4.0",
"@redhat-cloud-services/ai-client-state": "^0.15.0",
"@redhat-cloud-services/ai-react-state": "^0.15.0",
"@redhat-cloud-services/arh-client": "^0.12.0",
"@redhat-cloud-services/frontend-components": "^7.0.26",
"@redhat-cloud-services/frontend-components-utilities": "^7.0.22",
"@redhat-cloud-services/lightspeed-client": "^0.15.0",
"@redhat-cloud-services/rhel-lightspeed-client": "^0.3.0",
"@scalprum/core": "^0.9.0",
"@scalprum/react-core": "^0.11.1",
"@unleash/proxy-client-react": "^5.0.1",
"classnames": "^2.5.1",
"immer": "^10.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "^9.1.0",
"react-redux": "8.1.3",
"react-router-dom": "^6.30.3",
"redux": "4.2.1",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.14.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "1.3.0",
"@redhat-cloud-services/frontend-components-config": "6.7.23",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.7",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/redux-logger": "^3.0.13",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "^13.17.0",
"cypress-localstorage-commands": "^2.2.8",
"eslint": "8.57.1",
"identity-obj-proxy": "3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "5.0.0",
"prop-types": "15.8.1",
"rimraf": "^6.1.2",
"stylelint": "16.26.1",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-scss": "6.14.0",
"ts-jest": "^29.4.6",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "virtual-assistant"
}
}