forked from RedHatInsights/learning-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.98 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.98 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": "learning-resources-app",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=18",
"npm": ">=7.24.2"
},
"scripts": {
"build": "fec build",
"cypress": "cypress",
"cypress:component": "cypress run --component",
"cypress:open": "cypress open",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"patch:hosts": "fec patch-etc-hosts",
"start": "fec dev-proxy",
"static": "fec static",
"test": "jest --passWithNoTests",
"verify": "npm-run-all build lint test",
"postinstall": "ts-patch install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test-storybook:ci": "test-storybook --ci"
},
"dependencies": {
"@data-driven-forms/pf4-component-mapper": "^4.1.4",
"@data-driven-forms/react-form-renderer": "^4.1.4",
"@monaco-editor/react": "^4.7.0",
"@patternfly/quickstarts": "^6.4.0",
"@patternfly/react-core": "^6.4.0",
"@patternfly/react-table": "^6.4.0",
"@redhat-cloud-services/frontend-components": "^6.1.1",
"@redhat-cloud-services/frontend-components-utilities": "^6.1.1",
"@redhat-cloud-services/types": "^2.0.3",
"@scalprum/core": "^0.9.0",
"@scalprum/react-core": "^0.11.1",
"@unleash/proxy-client-react": "^4.5.2",
"axios": "^1.13.2",
"classnames": "^2.5.1",
"monaco-editor": "^0.55.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "^6.6.2",
"react-router-dom": "^6.30.2",
"yaml": "^2.8.1"
},
"devDependencies": {
"@playwright/test": "1.59.0",
"@redhat-cloud-services/playwright-test-auth": "^0.0.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.12",
"@redhat-cloud-services/frontend-components-config": "^6.8.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.26",
"@storybook/addon-docs": "^9.1.17",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/react-webpack5": "^9.1.17",
"@storybook/test-runner": "^0.23.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/react": "18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^14.5.4",
"eslint": "8.57.1",
"http-server": "^14.1.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest_workaround": "^0.79.19",
"jest-environment-jsdom": "^29.7.0",
"msw": "2.12.10",
"msw-storybook-addon": "^2.0.6",
"npm-run-all2": "5.0.2",
"remark-gfm": "^4.0.0",
"storybook": "^9.1.17",
"ts-jest": "^29.4.5",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"uuid": "^9.0.1",
"wait-on": "^7.2.0",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "learning-resources"
},
"msw": {
"workerDirectory": [
"public"
]
}
}