This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
134 lines (134 loc) · 5.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
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
{
"name": "forklift-ui",
"version": "0.0.1",
"description": "OpenShift VM Migration UI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/konveyor/forklift-ui.git"
},
"main": "pkg/api/src/server.js",
"private": true,
"scripts": {
"dr:surge": "node dr-surge.js",
"setup:dev:remote": "node ./pkg/api/scripts/remote-dev.js",
"build": "npm run clean && NODE_ENV=production $(npm bin)/webpack --config ./config/webpack.prod.js",
"build:remote": "DATA_SOURCE=remote npm run build",
"build:mock": "DATA_SOURCE=mock FORKLIFT_UI_GIT_COMMIT=$(git rev-parse --short HEAD) npm run build && npm run dr:surge",
"start": "node --trace-deprecation ./pkg/api/src/server.js",
"start:remote": "DATA_SOURCE=remote npm run start",
"start:mock": "DATA_SOURCE=mock npm run start",
"start:dev": "./pkg/api/scripts/start-dev.sh",
"start:dev:remote": "npm run setup:dev:remote && DATA_SOURCE=remote npm run start:dev",
"start:dev:mock": "DATA_SOURCE=mock npm run start:dev",
"format": "$(npm bin)/prettier --check --write ./pkg/**/*.{tsx,ts,js}",
"lint": "$(npm bin)/eslint .",
"lint:fix": "npm run lint -- --fix",
"build:bundle-profile": "$(npm bin)/webpack --config ./config/webpack.prod.js --profile --json=compilation-stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && $(npm bin)/webpack-bundle-analyzer ./compilation-stats.json",
"test": "npm run test:unit -- --coverage",
"test:unit": "DATA_SOURCE=mock $(npm bin)/jest --rootDir=./pkg/web --config=config/jest.config.js",
"test:watch": "npm run test:unit -- --watch",
"tsc-src": "$(npm bin)/tsc --project ./pkg/web/tsconfig.json --noEmit",
"tsc-qe": "$(npm bin)/tsc --project ./pkg/qe-tests/tsconfig.json --noEmit",
"tsc": "npm run tsc-src && npm run tsc-qe",
"type-check": "npm run tsc",
"ci": "npm run type-check && npm run lint && npm run test",
"clean": "$(npm bin)/rimraf dist"
},
"devDependencies": {
"@axe-core/react": "^4.2.1",
"@hot-loader/react-dom": "^17.0.2",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.12",
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/netmask": "^1.0.30",
"@types/q": "^1.5.4",
"@types/react-dom": "^17.0.7",
"@types/react-router": "^5.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/simple-oauth2": "^4.1.0",
"@types/victory": "^33.1.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"concurrently": "^6.4.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.1.4",
"cypress": "^9.1.1",
"cypress-localstorage-commands": "^2.1.0",
"cypress-mochawesome-reporter": "^2.3.0",
"cypress-multi-reporters": "^1.5.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"imagemin": "^8.0.0",
"jest": "^27.0.4",
"junit-report-merger": "^3.0.5",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-hot-loader": "^4.13.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"simple-oauth2": "^4.2.0",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslib": "^2.3.1",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@migtools/lib-ui": "^8.4.1",
"@patternfly/react-core": "^4.224.1",
"@patternfly/react-icons": "^4.75.1",
"@patternfly/react-styles": "^4.74.1",
"@patternfly/react-table": "^4.93.1",
"@patternfly/react-tokens": "^4.76.1",
"axios": "^0.21.2",
"dayjs": "^1.10.5",
"dayjs-ext": "^2.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"get-ssl-certificate": "^2.3.3",
"http-proxy-middleware": "^2.0.0",
"js-yaml": "^4.1.0",
"netmask": "^2.0.2",
"node-fetch": "^2.6.7",
"q": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.17.0",
"react-router-dom": "^5.2.0",
"react-router-last-location": "^2.0.1",
"react-syntax-highlighter": "^15.4.3",
"yup": "^0.32.9"
}
}