forked from project-koku/koku-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (126 loc) · 5.12 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
{
"name": "koku-ui",
"version": "0.0.1",
"description": "User Interface for Cost Management",
"main": "index.js",
"repository": "https://github.com/project-koku/koku-ui.git",
"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",
"deploy": "npm-run-all build lint test",
"install:pkgs": "npm install",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint src",
"lint:ts:fix": "eslint src --fix",
"patch:hosts": "fec patch-etc-hosts",
"postinstall": "rm -rf .cache",
"start": "HMR=true fec dev",
"start:csc": "CLOUD_SERVICES_CONFIG_PORT=8889 npm start",
"start:ephemeral": "EPHEMERAL_PORT=8000 npm start",
"start:local:api": "LOCAL_API_PORT=8000 LOCAL_API_HOST=localhost KEYCLOAK_PORT=4020 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": "4.224.2",
"@patternfly/react-charts": "6.94.19",
"@patternfly/react-core": "4.276.8",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-styles": "4.92.6",
"@patternfly/react-table": "4.113.0",
"@patternfly/react-tokens": "4.94.6",
"@redhat-cloud-services/frontend-components": "^3.9.34",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.14",
"@redhat-cloud-services/frontend-components-translations": "^3.2.6",
"@redhat-cloud-services/frontend-components-utilities": "^3.5.0",
"@redhat-cloud-services/rbac-client": "^1.2.2",
"@unleash/proxy-client-react": "^3.5.2",
"axios": "^1.3.6",
"date-fns": "^2.29.3",
"js-file-download": "^0.4.12",
"lodash": "^4.17.21",
"qs": "^6.11.1",
"react": "^17.0.2",
"react-bootstrap": "^2.7.4",
"react-dom": "^17.0.2",
"react-intl": "^6.3.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"typesafe-actions": "^5.1.0",
"unleash-proxy-client": "^2.4.3",
"victory-core": "36.6.7",
"xstate": "^4.37.1"
},
"devDependencies": {
"@formatjs/cli": "^6.1.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.3.0",
"@redhat-cloud-services/frontend-components-config": "^4.7.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@xstate/test": "^0.5.1",
"aphrodite": "^2.4.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.36.0",
"eslint-plugin-formatjs": "^4.10.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-patternfly-react": "^4.80.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^5.10.3",
"git-revision-webpack-plugin": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-axios": "^4.7.1",
"jws": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.2",
"webpack-bundle-analyzer": "^4.8.0"
},
"overrides": {
"eslint": "^8.36.0",
"react-intl": "^6.3.2",
"typescript": "^5.0.2"
},
"insights": {
"appname": "cost-management"
}
}