towerops/e2e/package.json
Graham McIntire 690f36f584
chore: update e2e npm dependencies
- @types/node: 22.0.0 -> 25.4.0
- otplib: 12.0.1 -> 13.3.0
2026-03-10 10:26:49 -05:00

24 lines
744 B
JSON

{
"name": "towerops-e2e",
"version": "1.0.0",
"type": "module",
"description": "End-to-end tests for Towerops",
"scripts": {
"test": "playwright test",
"test:local": "BASE_URL=http://localhost:4000 playwright test",
"test:staging": "BASE_URL=https://staging.towerops.net playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"codegen": "playwright codegen http://localhost:4000",
"report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@scure/base": "^2.0.0",
"@types/node": "^25.4.0",
"dotenv": "^17.3.1",
"otplib": "^13.3.0",
"speakeasy": "^2.0.0"
}
}