-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.22 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.22 KB
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
{
"name": "tackle-ui-tests",
"version": "0.1.0",
"description": "Tackle Web UI Tests",
"license": "Apache-2.0",
"private": true,
"repository": "https://github.com/konveyor/tackle-ui-tests.git",
"dependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.5",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@testing-library/cypress": "^10.1.0",
"@types/node": "^20.1.0",
"cy-verify-downloads": "^0.1.13",
"cypress": "^15.7.0",
"cypress-downloadfile": "^1.2.4",
"cypress-fail-fast": "^7.1.1",
"cypress-file-upload": "^5.0.8",
"cypress-fs": "^0.2.6",
"cypress-log-filter": "^1.0.5",
"cypress-mochawesome-reporter": "^3.2.2",
"cypress-multi-reporters": "^1.5.0",
"cypress-react-selector": "^3.0.0",
"cypress-real-events": "^1.15.0",
"cypress-tags": "^1.2.2",
"decompress": "^4.2.1",
"esbuild": "^0.25.5",
"faker": "^5.5.3",
"glob": "^10.3.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"junit-report-merger": "^3.0.2",
"license-check-and-add": "^4.0.5",
"lint-staged": "^16.1.2",
"mocha": "^9.1.2",
"mocha-junit-reporter": "^2.0.2",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.23.28",
"typescript": "^4.2.4"
},
"scripts": {
"prepare": "node .husky/install.mjs",
"e2e:run:local": "cypress run --env baseUrl=http://localhost:9000",
"e2e:open:local": "cypress open --e2e --env baseUrl=http://localhost:9000",
"check": "prettier --check './cypress/**/*.{ts,js,json}'",
"format": "prettier --write './cypress/**/*.{ts,js,json}'",
"mergereports": "npx jrm ./cypress/reports/junitreport.xml ./cypress/reports/junit/*.xml"
},
"lint-staged": {
"!(package-lock.json)*": "prettier --ignore-unknown --write",
"cypress/**/*.{ts,js,json}": "prettier --ignore-unknown --write "
},
"engines": {
"node": ">=20.17"
},
"devDependencies": {
"mochawesome-merge": "^4.4.1",
"table": "^6.9.0"
}
}