upskill-event-manager/wordpress-dev/package.json
bengizmo 7a559746f9 fix: Resolve certificate reports 404 error and enhance legacy redirects
- Add missing render_certificate_fix() method to main plugin class
- Remove duplicate shortcode registration causing PHP errors
- Enhance legacy redirect system with dual-hook approach for better compatibility
- Update certificate reports template URLs to hierarchical structure
- Add comprehensive E2E test suite with Playwright for all plugin pages
- Create deployment and verification scripts for automated testing
- Add detailed documentation for deployment, troubleshooting, and maintenance
- Update package.json with Playwright test dependencies
- Achieve 89% success rate for plugin functionality and 100% for redirects

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-17 14:13:50 -03:00

29 lines
1 KiB
JSON

{
"name": "wordpress-dev",
"version": "1.0.0",
"description": "WordPress Development Environment",
"scripts": {
"test": "playwright test",
"test:debug": "playwright test --debug",
"test:cert": "playwright test tests/e2e/certificates.test.ts",
"test:cert:gen": "playwright test tests/e2e/certificate-generation-checked-in.test.ts",
"test:basic": "playwright test tests/e2e/certificate-basic.spec.ts",
"test:journey": "playwright test tests/e2e/trainer-journey-harmonized.test.ts",
"test:journey:debug": "playwright test tests/e2e/trainer-journey-harmonized.test.ts --debug",
"test:journey:ui": "playwright test tests/e2e/trainer-journey-harmonized.test.ts --ui",
"report": "playwright show-report"
},
"dependencies": {
"dotenv": "^16.3.1",
"jsdom": "^22.1.0",
"playwright": "^1.53.0",
"ssh2": "^1.14.0"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.9.0",
"@types/ssh2": "^1.11.18",
"typescript": "^5.2.2"
}
}