forked from openshift-assisted/assisted-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.03 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
{
"name": "metal3-facet",
"version": "0.1.4",
"private": false,
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openshift-metal3/facet/issues"
},
"dependencies": {
"@patternfly/patternfly": "^2.68.4",
"@patternfly/react-core": "^3.146.0",
"@patternfly/react-icons": "^3.15.12",
"@patternfly/react-table": "2.28.47",
"@patternfly/react-tokens": "^2.8.8",
"@reduxjs/toolkit": "^1.3.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@tippy.js/react": "^3.1.1",
"@types/file-saver": "^2.0.1",
"@types/human-date": "^1.4.0",
"@types/humanize-plus": "^1.8.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.121",
"@types/netmask": "^1.0.30",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/uuid": "^8.0.0",
"@types/yup": "^0.26.9",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"axios": "^0.19.2",
"axios-case-converter": "^0.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"file-saver": "^2.0.2",
"formik": "^2.1.4",
"http-proxy-middleware": "^1.0.3",
"human-date": "^1.4.0",
"humanize-plus": "^1.8.2",
"lodash": "^4.17.15",
"netmask": "^1.0.6",
"node-sass": "^4.13.1",
"prettier": "^2.0.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sw2dts": "^2.6.2",
"typescript": "^3.8.3",
"unique-names-generator": "^4.2.0",
"uuid": "^8.1.0",
"yup": "^0.28.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,md,scss,yaml,yml}'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --color .",
"update-api": "curl https://raw.githubusercontent.com/filanov/bm-inventory/master/swagger.yaml > src/api/swagger.yaml",
"postupdate-api": "yarn swagger",
"swagger": "sw2dts -w -o src/api/types.ts src/api/swagger.yaml",
"postswagger": "sed -i -r 's/([a-z1-9]+)_([a-z])/\\1\\U\\2/g' src/api/types.ts && yarn prettier",
"cypress-open": "yarn run cypress open",
"cypress-run": "yarn run cypress run"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"cypress": "^4.5.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-reporters": "^2.3.2"
}
}