diff --git a/test-framework/package.json b/test-framework/package.json new file mode 100644 index 0000000..7999098 --- /dev/null +++ b/test-framework/package.json @@ -0,0 +1,24 @@ +{ + "name": "test-framework", + "version": "1.0.0", + "description": "Unified test framework for Novalon website", + "scripts": { + "test": "playwright test", + "test:dev-audit": "playwright test", + "test:dev-audit:performance": "playwright test dev-audit/performance", + "test:dev-audit:seo": "playwright test dev-audit/seo", + "test:dev-audit:accessibility": "playwright test dev-audit/accessibility", + "test:dev-audit:forms": "playwright test dev-audit/forms", + "test:report": "playwright show-report", + "test:install": "playwright install" + }, + "devDependencies": { + "@playwright/test": "^1.40.0", + "@axe-core/playwright": "^4.8.0", + "typescript": "^5.3.0" + }, + "dependencies": { + "lighthouse": "^11.0.0", + "chrome-launcher": "^1.0.0" + } +}