generated from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
137 lines (137 loc) · 5.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "hybrid-committed-spend",
"version": "0.0.1",
"description": "User Interface for Hybrid Committed Spend",
"main": "index.js",
"author": "Red Hat",
"license": "GNU AGPLv3",
"private": false,
"engines": {
"node": ">=20.15.0",
"npm": ">=10.8.0"
},
"scripts": {
"build": "npm run build:prod",
"build:prod": "fec build",
"check:dependencies": "npx npm-check-updates",
"check:dependencies:update": "npx npm-check-updates -u",
"check:messages": "sh scripts/unused-messages.sh",
"clean": "rimraf dist .cache .swc",
"codemods": "npx @patternfly/pf-codemods@latest src",
"deploy": "npm-run-all build lint test",
"install:pkgs": "npm install",
"install:pkgs:force": "npm install --force",
"install:pkgs:links": "npm run install:pkgs && npm install --install-links",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint src",
"lint:ts:fix": "eslint src --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"patch:hosts": "fec patch-etc-hosts",
"postinstall": "ts-patch install && rm -rf .cache",
"release:prod": "sh scripts/release-branch.sh -p",
"start": "HMR=true fec dev",
"start:csb": "CLOUD_SERVICES_BACKEND_PORT=8000 npm start",
"start:hmr": "HMR=true npm start",
"stats": "npm run build:prod --profile --json > stats.json",
"test": "jest --no-cache",
"test:clean": "jest --clearCache",
"test:update": "npm run test:clean && jest --updateSnapshot",
"translations": "npm-run-all translations:extract translations:compile translations:compile:ast translations:datafile",
"translations:test": "npm-run-all translations:extract translations:compile translations:compile:ast 'translations:syncTranslations --locale fr' 'translations:syncTranslations --locale de' translations:datafile",
"translations:clean": "rm -f `/bin/ls -1 locales/*.json | /usr/bin/egrep -v 'data|translations'.json`",
"translations:extract": "npx formatjs extract src/locales/*.ts --out-file build/messages/src/Messages.json",
"translations:compile": "npx formatjs compile build/messages/src/Messages.json --out-file locales/translations.json",
"translations:compile:ast": "npx formatjs compile build/messages/src/Messages.json --out-file locales/en.json --ast",
"translations:datafile": "node scripts/createDataJson.js",
"translations:syncTranslations": "node scripts/syncTranslations.js",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/patternfly": "5.4.2",
"@patternfly/react-charts": "7.4.6",
"@patternfly/react-component-groups": "5.5.4",
"@patternfly/react-core": "5.4.8",
"@patternfly/react-icons": "5.4.2",
"@patternfly/react-table": "5.4.9",
"@patternfly/react-tokens": "5.4.1",
"@redhat-cloud-services/frontend-components": "^4.2.22",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.1",
"@redhat-cloud-services/frontend-components-translations": "^3.2.9",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.19",
"@reduxjs/toolkit": "^2.3.0",
"@unleash/proxy-client-react": "^4.4.0",
"axios": "^1.7.7",
"js-file-download": "^0.4.12",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.8.7",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.2.0",
"redux-thunk": "^3.1.0",
"typesafe-actions": "^5.1.0",
"victory": "^37.3.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@formatjs/cli": "^6.3.8",
"@formatjs/ecma402-abstract": "^2.2.3",
"@formatjs/fast-memoize": "^2.2.3",
"@formatjs/icu-messageformat-parser": "^2.9.3",
"@formatjs/intl-localematcher": "^0.5.7",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@redhat-cloud-services/frontend-components-config": "^6.3.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.17",
"@swc/core": "^1.9.2" ,
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.14.0",
"eslint-plugin-formatjs": "^5.2.2",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-patternfly-react": "^5.4.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^6.4.0",
"git-revision-webpack-plugin": "^5.0.0",
"globals": "^15.12.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-axios": "^4.8.0",
"jest-transform-stub": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"swc_mut_cjs_exports": "^0.109.1",
"ts-jest": "^29.2.5",
"ts-patch": "^3.2.1",
"typescript": "^5.6.3"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"eslint": "^9.14.0",
"redux": "^5.0.1"
},
"insights": {
"appname": "hybrid-committed-spend"
}
}