This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
133 lines (133 loc) · 4.07 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
{
"name": "frontigrade",
"version": "0.1.14",
"description": "Frontigrade, web user interface for Cloudigrade",
"author": "Red Hat",
"license": "GPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "https://gitlab.com/cloudigrade/frontigrade.git"
},
"bugs": {
"url": "https://gitlab.com/cloudigrade/frontigrade/issues"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 70,
"statements": 70
}
},
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/common/helpers.js",
"!src/components/app.js",
"!src/index.js",
"!src/services/index.js",
"!src/setupTests.js",
"!src/redux/index.js",
"!src/redux/store.js",
"!src/redux/middleware/**",
"!src/redux/actions/index.js",
"!src/redux/reducers/index.js",
"!src/redux/selectors/index.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"api:dev": "sh ./scripts/dev.sh -p 5000 -d \"$(pwd)/src/services\"",
"build:clean": "rm -rf -- \"$(pwd)\"/build",
"build:js": "react-scripts build",
"build:rh": "sh -ac 'export REACT_APP_RH_BRAND=true && run-s -l build:clean build:js'",
"build": "run-s -l build:clean build:js",
"locale:gettext": "node ./scripts/gettext.js",
"locale:wordigrade": "node ./scripts/wordigrade.js",
"release": "> ./CHANGELOG.md && standard-version",
"start:js": "react-scripts start",
"start:review": "sh -ac '[[ -e ./.env.local ]] && . ./.env.local; . ./.env.review; [[ ! -z $API_HOST ]] && run-p -l start:js || echo \"API_HOST is not defined, review the README for review serve directions.\"'",
"start": "run-p -l start:js api:dev",
"test:dev": "run-s test:lint-js test:local",
"test:lint-js": "eslint --ext=json --ext=js --ext=jsx src ./public/locales",
"test:ci": "export CI=true; react-scripts test --env=jsdom --coverage",
"test:clearCache": "react-scripts test --clearCache",
"test:local": "react-scripts test --env=jsdom",
"test": "run-s test:lint-js test:ci"
},
"dependencies": {
"@patternfly/patternfly-next": "1.0.129",
"@patternfly/react-charts": "1.2.7",
"@patternfly/react-core": "2.10.0",
"@patternfly/react-icons": "2.9.7",
"@patternfly/react-styles": "2.3.0",
"@patternfly/react-tokens": "1.9.6",
"axios": "^0.18.0",
"bootstrap": "^3.3.7",
"detect-browser": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"i18next": "^11.10.2",
"i18next-xhr-backend": "^1.5.1",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"patternfly": "3.55.0",
"patternfly-react": "^2.29.12",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.1",
"react-i18next": "^8.4.0",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"enzyme-to-json": "^3.3.5",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.0",
"gettext-extractor": "^3.4.3",
"iso-639-1": "^2.0.5",
"moxios": "^0.4.0",
"prettier": "^1.17.1",
"redux-mock-store": "^1.5.3",
"standard-version": "^6.0.1",
"wordigrade": "https://gitlab.com/cloudigrade/wordigrade.git#master"
},
"resolutions": {
"**/eslint": "5.16.0"
}
}