25 lines
766 B
JSON
25 lines
766 B
JSON
|
|
{
|
||
|
|
"name": "frontend-automation",
|
||
|
|
"private": true,
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Playwright end-to-end test suite for the PassDashboard merchant portal",
|
||
|
|
"type": "module",
|
||
|
|
"scripts": {
|
||
|
|
"test:e2e": "playwright test",
|
||
|
|
"test:e2e:dev": "ENV=develop playwright test",
|
||
|
|
"test:e2e:staging": "ENV=staging playwright test",
|
||
|
|
"test:e2e:prod": "ENV=production playwright test",
|
||
|
|
"test:e2e:ui": "playwright test --ui",
|
||
|
|
"typecheck": "tsc --noEmit",
|
||
|
|
"report": "playwright show-report",
|
||
|
|
"install:browsers": "playwright install --with-deps chromium"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@playwright/test": "^1.44.0",
|
||
|
|
"@types/node": "^20.14.0",
|
||
|
|
"allure-playwright": "^3.10.0",
|
||
|
|
"typescript": "^5.5.3",
|
||
|
|
"xlsx": "^0.18.5"
|
||
|
|
}
|
||
|
|
}
|