mirror of
https://github.com/SigNoz/signoz.git
synced 2026-06-25 01:20:32 +01:00
* test: fix pnpm version in package json and npmrc * test: remove packageManager as it shows wrong error message
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "signoz-frontend-automation",
|
|
"version": "1.0.0",
|
|
"description": "E2E tests for SigNoz frontend with Playwright",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"test": "playwright test",
|
|
"test:staging": "SIGNOZ_E2E_BASE_URL=https://app.us.staging.signoz.cloud playwright test",
|
|
"test:ui": "playwright test --ui",
|
|
"test:headed": "playwright test --headed",
|
|
"test:debug": "playwright test --debug",
|
|
"test:chromium": "playwright test --project=chromium",
|
|
"test:firefox": "playwright test --project=firefox",
|
|
"test:webkit": "playwright test --project=webkit",
|
|
"report": "playwright show-report artifacts/html",
|
|
"codegen": "playwright codegen",
|
|
"install:browsers": "playwright install",
|
|
"install:cli": "npm install -g @playwright/cli@latest && playwright-cli install --skills",
|
|
"fmt": "oxfmt .",
|
|
"fmt:check": "oxfmt --check .",
|
|
"lint": "oxlint .",
|
|
"lint:fix": "oxlint . --fix",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"playwright",
|
|
"e2e",
|
|
"testing",
|
|
"signoz"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.57.0-alpha-2025-10-09",
|
|
"@types/node": "^20.0.0",
|
|
"dotenv": "^16.0.0",
|
|
"eslint-plugin-playwright": "^2.10.2",
|
|
"oxfmt": "^0.41.0",
|
|
"oxlint": "^1.59.0",
|
|
"oxlint-tsgolint": "^0.20.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"pnpm": ">=10.0.0 <11.0.0"
|
|
}
|
|
}
|