forked from RedHatInsights/curiosity-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.09 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
{
"name": "subscriptions-insights-frontend",
"version": "0.0.1",
"description": "Subscriptions Insights Frontend",
"author": "Red Hat",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/RedHatInsights/subscriptions-insights-frontend.git"
},
"bugs": {
"url": "https://github.com/RedHatInsights/subscriptions-insights-frontend/issues"
},
"engines": {
"node": ">=10.0.0"
},
"insights": {
"appname": "subscriptions-insights"
},
"browserslist": [],
"jest": {
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js",
"!src/setupTests.js",
"!src/components/app.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
}
},
"scripts": {
"api:dev": "mock -p 5000 -w ./src/services",
"api:proxy": "sh ./scripts/proxy.api.sh -d \"ci.foo.redhat.com\" -p 1337 -c \"$(pwd)/config/spandx.config.js\"",
"api:proxyClean": "sh ./scripts/proxy.api.sh -u",
"build": "run-s -l build:pre build:version build:js build:post test:integration",
"build:js": "react-scripts build",
"build:post": "sh ./scripts/build.sh",
"build:pre": "rm -rf -- \"$(pwd)\"/build",
"build:version": "sh ./scripts/version.sh",
"release": "standard-version",
"start": "sh ./scripts/dev.chrome.sh; run-p -l api:dev start:js",
"start:js": "react-scripts start",
"start:proxy": "sh -ac '. ./.env.proxy; open https://ci.foo.redhat.com:1337/; run-p -l start:js api:proxy api:dev'",
"start:standalone": "rm ./.env.development.local; run-s -l api:dev start:js",
"test": "run-s test:lint test:ci",
"test:ci": "export CI=true; react-scripts test --env=jsdom --roots=./src --coverage",
"test:clearCache": "react-scripts test --clearCache",
"test:dev": "run-s test:lint test:local",
"test:integration": "jest --roots=./tests",
"test:integration-dev": "jest ./tests/* --watchAll",
"test:lint": "eslint --ext=json --ext=js --ext=jsx src",
"test:local": "react-scripts test --env=jsdom --roots=./src"
},
"dependencies": {
"@patternfly/patternfly": "2.8.3",
"@patternfly/react-charts": "4.0.2",
"@patternfly/react-core": "3.34.2",
"@patternfly/react-icons": "3.9.3",
"@patternfly/react-styles": "3.2.0",
"@patternfly/react-table": "2.9.3",
"@patternfly/react-tokens": "2.5.3",
"@redhat-cloud-services/frontend-components": "0.0.7",
"@redhat-cloud-services/frontend-components-utilities": "0.0.7",
"axios": "^0.19.0",
"i18next": "^15.1.3",
"i18next-xhr-backend": "^2.0.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-i18next": "^10.11.1",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"apidoc-mock": "^3.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"moxios": "^0.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"redux-mock-store": "^1.5.3",
"standard-version": "^6.0.1"
},
"resolutions": {
"**/eslint": "5.16.0"
}
}