-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
136 lines (135 loc) · 4.75 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
{
"name": "mig-ui",
"version": "0.1.0",
"description": "Crane",
"main": "index.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prebuild": "yarn clean",
"build": "webpack --mode=production --config config/webpack.prod.js",
"image:build": "./scripts/build-image.sh",
"image:push": "./scripts/push-image.sh",
"clean": "yarn rimraf dist && yarn rimraf tmp",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx && yarn prettier ./src/**/*.scss --check",
"lint:fix": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix && yarn prettier ./src/**/*.scss --write",
"prettier:fix": "yarn prettier . --write",
"start": "DEVMODE=local webpack serve --hot --color --progress --info=true --config config/webpack.dev.js",
"start:prod-server": "./scripts/prod-server.sh",
"start:remote": " DEPRECATED_CORS=false NODE_ENV=dev ./scripts/remote-dev.sh",
"start:remote:localprod": " DEPRECATED_CORS=false ./scripts/remote-dev-localprod.sh",
"start:remote:3": "ORIGIN3_HOST=true ./scripts/remote-dev.sh",
"prep-remote": "./scripts/prep-remote.sh",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"copy-config": "cp ./config/config.dev.json.example ./config/config.dev.json && ",
"test:unit": "jest --rootDir=. --config=config/jest.config.js",
"test": "yarn test:unit",
"ci": "yarn lint && yarn test && yarn build",
"mocks": "node scripts/gather-mocked-data.js",
"mocks:prune": "node scripts/gather-mocked-data.js prune",
"build:bundle-profile": "webpack --config config/webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "yarn build:bundle-profile && webpack-bundle-analyzer ./stats.json"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.0",
"@types/node": "^11.13.6",
"@types/react": "^16.9.34",
"@types/react-dom": "^17.0.6",
"@types/react-router-dom": "^5.1.7",
"@types/react-router-hash-link": "^2.4.0",
"@types/redux-logger": "^3.0.8",
"@types/testing-library__jest-dom": "^5.9.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^5.2.0",
"css-loader": "^5.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-testing-library": "^3.3.0",
"file-loader": "^6.2.0",
"formik": "^2.1.4",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"json-merge-patch": "^0.2.3",
"mini-css-extract-plugin": "^1.5.0",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"redux-mock-store": "^1.5.4",
"rimraf": "^2.6.3",
"sass-loader": "^11.0.1",
"source-map-loader": "^4.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.4",
"ts-loader": "^9.1.0",
"typescript": "^4.2.3",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.1",
"@konveyor/lib-ui": "^5.1.2",
"@patternfly/react-core": "^4.115.5",
"@patternfly/react-icons": "^4.9.5",
"@patternfly/react-styles": "^4.8.5",
"@patternfly/react-table": "^4.27.5",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/dom": "^7.19.0",
"@testing-library/user-event": "^12.0.11",
"@types/q": "^1.5.4",
"@types/react-redux": "^7.1.16",
"@types/redux-saga": "^0.10.5",
"axios": "^1.7.4",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"connected-react-router": "^6.9.1",
"dayjs": "^1.9.5",
"ejs": "^3.1.7",
"express": "^4.20.0",
"history": "^4.9.0",
"http-proxy-middleware": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"ip-range-check": "^0.2.0",
"is-cidr": "^4.0.2",
"is-ip": "^3.1.0",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"process": "^0.11.10",
"q": "^1.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-fast-compare": "^3.2.0",
"react-hot-loader": "^4.13.0",
"react-json-view": "^1.21.3",
"react-redux": "^7.2.4",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^2.4.3",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.0.3",
"reselect": "^4.0.0",
"sass": "^1.22.10",
"semver": "7.5.2",
"simple-oauth2": "^4.1.0",
"stream": "^0.0.2",
"tough-cookie": "4.1.3",
"tree-crawl": "^1.0.5",
"url": "^0.11.0",
"uuid": "^3.3.2"
},
"resolutions": {
"optionator": "^0.9.3",
"semver": "7.5.2",
"tough-cookie": "4.1.3",
"follow-redirects": "^1.15.6",
"braces": "^3.0.3",
"path-to-regexp": "0.1.10"
}
}