|
| 1 | +{ |
| 2 | + "name": "github-actions-e2e-tests", |
| 3 | + "version": "1.0.0", |
| 4 | + "private": true, |
| 5 | + "type": "module", |
| 6 | + "engines": { |
| 7 | + "node": ">=22", |
| 8 | + "yarn": ">=3" |
| 9 | + }, |
| 10 | + "packageManager": "yarn@3.8.7", |
| 11 | + "description": "E2E tests for <your-plugin>", |
| 12 | + "scripts": { |
| 13 | + "test": "playwright test", |
| 14 | + "report": "playwright show-report", |
| 15 | + "test:ui": "playwright test --ui", |
| 16 | + "test:headed": "playwright test --headed", |
| 17 | + "lint:check": "eslint .", |
| 18 | + "lint:fix": "eslint . --fix", |
| 19 | + "prettier:check": "prettier --check .", |
| 20 | + "prettier:fix": "prettier --write .", |
| 21 | + "tsc:check": "tsc --noEmit", |
| 22 | + "check": "yarn tsc:check && yarn lint:check && yarn prettier:check" |
| 23 | + }, |
| 24 | + "devDependencies": { |
| 25 | + "@eslint/js": "^9.39.2", |
| 26 | + "@playwright/test": "1.57.0", |
| 27 | + "@red-hat-developer-hub/e2e-test-utils": "1.1.13", |
| 28 | + "@types/node": "^24.10.1", |
| 29 | + "dotenv": "^16.4.7", |
| 30 | + "eslint": "^9.39.2", |
| 31 | + "eslint-plugin-check-file": "^3.3.1", |
| 32 | + "eslint-plugin-playwright": "^2.4.0", |
| 33 | + "prettier": "^3.7.4", |
| 34 | + "typescript": "^5.9.3", |
| 35 | + "typescript-eslint": "^8.50.0" |
| 36 | + } |
| 37 | +} |
0 commit comments