mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
28 lines
829 B
JSON
28 lines
829 B
JSON
{
|
|
"name": "@oneuptime/e2e",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"preinstall": "npx playwright install-deps && npx playwright install",
|
|
"test": "playwright test || (curl $E2E_TESTS_FAILED_WEBHOOK_URL && exit 1)",
|
|
"dep-check": "npm install -g depcheck && depcheck ./ --skip-missing=true",
|
|
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
|
|
"compile": "tsc",
|
|
"debug-tests": "playwright test --debug"
|
|
},
|
|
"keywords": [],
|
|
"author": "OneUptime <hello@oneuptime.com> (https://oneuptime.com/)",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.4"
|
|
},
|
|
"dependencies": {
|
|
"@playwright/test": "^1.43.1",
|
|
"Common": "file:../Common",
|
|
|
|
"playwright": "^1.43.1",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|