forked from RedHatInsights/curiosity-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 5.41 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "curiosity-frontend",
"version": "2.3.0",
"description": "A subscription reporting frontend.",
"author": "Red Hat",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/RedHatInsights/curiosity-frontend.git"
},
"bugs": {
"url": "https://github.com/RedHatInsights/curiosity-frontend/issues"
},
"engines": {
"node": ">=14.0.0"
},
"insights": {
"appname": "subscriptions"
},
"standard-version": {
"skip": {
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "build",
"section": "Build"
}
]
},
"scripts": {
"api:dev": "mock -p 5000 -w ./src/services -w ./src/services/rhsm",
"api:docs": "node ./scripts/openapi.docs.js",
"api:proxy-hosts": "bash ./scripts/proxy.api.sh",
"build": "run-s -l build:pre build:js build:post test:integration",
"build:js": "export NODE_ENV=production; webpack --config config/webpack.prod.config.js",
"build:post": "bash ./scripts/post.sh",
"build:pre": "bash ./scripts/pre.sh",
"build:deps": "ncu --doctor -u --doctorInstall \"yarn\" --doctorTest \"yarn test:deps\" --reject \"@patternfly/*, @redhat-cloud-services/frontend*, victory*\"",
"dev:chrome": "bash ./scripts/dev.chrome.sh -b prod-stable",
"release": "standard-version",
"start": "run-p -l api:dev start:js",
"start:js": "export NODE_ENV=development; webpack serve --config config/webpack.dev.config.js",
"start:js-proxy": "export NODE_ENV=development; webpack serve --config config/webpack.proxy.config.js",
"start:proxy": "run-s -l api:proxy-hosts start:js-proxy",
"test": "export NODE_ENV=test; run-s test:spell* test:lint test:ci",
"test:ci": "export CI=true; jest ./src --coverage",
"test:clearCache": "jest --clearCache",
"test:dev": "export NODE_ENV=test; run-s test:spell test:lint test:local",
"test:deps": "run-s test build",
"test:integration": "jest ./tests",
"test:integration-dev": "jest --roots=./tests --watch",
"test:lint": "eslint --ext=json --ext=js --ext=jsx src",
"test:spell-support": "cspell ./README.md ./config/README.md ./CONTRIBUTING.md --config ./config/cspell.config.json",
"test:spell": "cspell './public/locales/**/en*json' './src/**/*.js' --config ./config/cspell.config.json",
"test:local": "jest --roots=./src --watch"
},
"dependencies": {
"@joi/date": "^2.1.0",
"@patternfly/patternfly": "4.171.1",
"@patternfly/react-charts": "6.45.15",
"@patternfly/react-core": "4.192.15",
"@patternfly/react-icons": "4.43.15",
"@patternfly/react-styles": "4.42.15",
"@patternfly/react-table": "4.61.15",
"@patternfly/react-tokens": "4.44.15",
"@redhat-cloud-services/frontend-components": "3.7.0",
"@redhat-cloud-services/frontend-components-notifications": "3.2.5",
"@redhat-cloud-services/frontend-components-utilities": "3.2.8",
"axios": "^0.26.0",
"classnames": "^2.3.1",
"i18next": "^21.6.11",
"i18next-xhr-backend": "^3.2.2",
"joi": "^17.6.0",
"js-cookie": "^3.0.1",
"locale-code": "^2.0.2",
"lodash": "^4.17.21",
"lru-cache": "^7.3.1",
"moment": "^2.29.1",
"numbro": "^2.3.6",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.4",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-use": "^17.3.2",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5",
"victory": "36.3.0",
"victory-create-container": "36.3.0"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@redhat-cloud-services/frontend-components-config": "4.6.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"apidoc-mock": "^4.0.2",
"babel-jest": "^27.5.1",
"babel-preset-react-app": "^10.0.1",
"copy-webpack-plugin": "^10.2.4",
"cspell": "^5.18.5",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.1",
"dotenv-webpack": "^7.1.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"express": "^4.17.3",
"glob": "^7.2.0",
"jest": "27.5.1",
"jest-resolve": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"moxios": "^0.4.0",
"npm-check-updates": "^12.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"redux-mock-store": "^1.5.4",
"standard-version": "^9.3.2",
"swagger-ui-express": "^4.3.0",
"webpack-bundle-analyzer": "^4.5.0",
"yamljs": "^0.3.0"
}
}