mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
32 lines
923 B
JSON
32 lines
923 B
JSON
{
|
|
"name": "@oneuptime/e2e",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/OneUptime/oneuptime"
|
|
},
|
|
"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.49.1",
|
|
"Common": "file:../Common",
|
|
|
|
"playwright": "^1.49.1",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|