forked from migtools/tackle-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.76 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
{
"name": "tackle-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@konveyor/lib-ui": "^2.0.0",
"@patternfly/patternfly": "4.132.2",
"@patternfly/react-charts": "6.15.20",
"@patternfly/react-core": "4.152.4",
"@patternfly/react-table": "4.29.58",
"@react-keycloak/web": "^3.4.0",
"@redhat-cloud-services/frontend-components-notifications": "3.2.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"file-saver": "^2.0.5",
"formik": "^2.2.6",
"i18next": "^19.8.4",
"i18next-http-backend": "^1.0.22",
"keycloak-js": "12.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.8.5",
"react-measure": "^2.5.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4",
"yup": "^0.32.8"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"extract": "i18next --config i18next-parser.config.js",
"start": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"build:instrumentation": "CYPRESS_INSTRUMENT_PRODUCTION=true react-scripts -r @cypress/instrument-cra build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"ui:start": "node server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.11",
"@cypress/instrument-cra": "^1.4.0",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-essentials": "^6.1.14",
"@storybook/addon-links": "^6.1.14",
"@storybook/node-logger": "^6.1.14",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.14",
"@storybook/theming": "^6.1.14",
"@testing-library/react-hooks": "^4.0.1",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/file-saver": "^2.0.2",
"@types/react-measure": "^2.0.6",
"@types/react-redux": "^7.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@types/yup": "^0.29.11",
"axios-mock-adapter": "^1.19.0",
"cypress": "8.4.0",
"cypress-file-upload": "^5.0.8",
"cypress-keycloak-commands": "^1.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"http-proxy-middleware": "^1.0.6",
"husky": "^4.3.7",
"i18next-parser": "^3.6.0",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.5.3",
"node-sass": "^4.14.1",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.8",
"source-map-explorer": "^2.5.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!src/**/*.stories.*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "npm run extract"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"nyc": {
"exclude": "src/reportWebVitals.ts"
}
}