generated from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
122 lines (122 loc) · 5.14 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
{
"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": ">=18.15.0",
"npm": ">=9.5.0"
},
"scripts": {
"build": "npm run build:prod",
"build:prod": "fec build",
"check:messages": "sh scripts/unused-messages.sh",
"check:updates": "npx npm-check-updates",
"check:milestone": "npx npm-check-updates -t newest -f '/^(@patternfly|@redhat-cloud-services)/'",
"check:milestone:update": "npx npm-check-updates -t newest -f '/^(@patternfly|@redhat-cloud-services)/' -u",
"clean": "rimraf dist .cache",
"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",
"start": "HMR=true fec dev",
"start:csc": "CLOUD_SERVICES_CONFIG_PORT=8000 npm start",
"start:hmr": "HMR=true npm start",
"start:static": "BETA=true fec static",
"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.1.0",
"@patternfly/react-charts": "^7.2.0-prerelease.2",
"@patternfly/react-core": "^5.1.1",
"@patternfly/react-icons": "^5.1.1",
"@patternfly/react-table": "^5.1.1",
"@patternfly/react-tokens": "^5.1.1",
"@redhat-cloud-services/frontend-components": "^4.0.14",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.4",
"@redhat-cloud-services/frontend-components-translations": "^3.2.7",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.2",
"@unleash/proxy-client-react": "^4.0.3",
"axios": "^1.5.1",
"classnames": "^2.3.2",
"js-file-download": "^0.4.12",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.5.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.17.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.3",
"redux-thunk": "^2.4.2",
"typesafe-actions": "^5.1.0",
"victory-core": "^36.6.11"
},
"devDependencies": {
"@formatjs/cli": "^6.2.1",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.3",
"@redhat-cloud-services/frontend-components-config": "^6.0.5",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.4",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"aphrodite": "^2.4.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.52.0",
"eslint-plugin-formatjs": "^4.11.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-patternfly-react": "^5.1.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^6.1.0",
"git-revision-webpack-plugin": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"stylelint-config-recommended-scss": "^13.0.0",
"ts-loader": "^9.5.0",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "^4.9.1"
},
"overrides": {
},
"insights": {
"appname": "hybrid-committed-spend"
}
}