Deploy to Production / Build & Verify (push) Failing after 5m56s
Ping Search Engines / Notify Search Engines (push) Successful in 2s
Deploy to Production / Pre-Deploy Tests (push) Has been skipped
Deploy to Production / Deploy to Railway (push) Has been skipped
Deploy to Production / Deploy to Render (push) Has been skipped
Deploy to Production / Deploy to VPS (PM2) (push) Has been skipped
Deploy to Production / Deploy to Fly.io (push) Has been skipped
Deploy to Production / Post-Deploy Verification (push) Has been skipped
Deploy to Production / Notify on Failure (push) Successful in 2s
E2E Test Suite / Critical User Journeys (push) Has been skipped
E2E Test Suite / API Integration Tests (push) Has been skipped
E2E Test Suite / Smoke Tests (P0) (push) Failing after 11m26s
E2E Test Suite / Form Interaction Tests (push) Failing after 11m42s
E2E Test Suite / Destructive & Chaos Tests (push) Failing after 12m2s
E2E Test Suite / Cross-Browser Regression (chromium) (push) Failing after 16m14s
E2E Test Suite / Cross-Browser Regression (webkit) (push) Failing after 17m45s
E2E Test Suite / Cross-Browser Regression (firefox) (push) Failing after 25m23s
E2E Test Suite / Security Header Tests (push) Failing after 7m55s
E2E Test Suite / Test Report Summary (push) Failing after 20s
E2E Test Suite / Mobile Device Tests (push) Failing after 2h49m9s
Uptime Monitor / Health & Response Time (push) Failing after 2s
Uptime Monitor / SSL Certificate (push) Successful in 2s
Uptime Monitor / Send Alerts (push) Failing after 3s
Uptime Monitor / Record Uptime Success (push) Has been skipped
54 lines
2.4 KiB
JSON
54 lines
2.4 KiB
JSON
{
|
|
"name": "workroot-website",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"start": "node server.mjs",
|
|
"start:prod": "NODE_ENV=production node server.mjs",
|
|
"deploy:build": "npm run build",
|
|
"deploy:start": "npm run start:prod",
|
|
"astro": "astro",
|
|
"test": "playwright test",
|
|
"test:smoke": "playwright test tests/e2e-smoke-suite.spec.ts --project=chromium",
|
|
"test:critical": "playwright test tests/e2e-critical-paths.spec.ts",
|
|
"test:api": "playwright test tests/api-integration.spec.ts --project=chromium",
|
|
"test:newsletter": "playwright test tests/newsletter-subscription.spec.ts --project=chromium",
|
|
"test:forms": "playwright test tests/contact-form.spec.ts tests/e2e-form-interactions.spec.ts tests/newsletter-subscription.spec.ts --project=chromium",
|
|
"test:chaos": "playwright test tests/destructive-chaos.spec.ts --project=chromium",
|
|
"test:chromium": "playwright test --project=chromium",
|
|
"test:firefox": "playwright test --project=firefox",
|
|
"test:webkit": "playwright test --project=webkit",
|
|
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
|
|
"test:report": "playwright show-report playwright-report",
|
|
"test:ci": "playwright test tests/e2e-smoke-suite.spec.ts tests/e2e-critical-paths.spec.ts tests/api-integration.spec.ts --project=chromium",
|
|
"backup:full": "bash scripts/backup/backup-full.sh",
|
|
"backup:content": "bash scripts/backup/backup-content.sh",
|
|
"backup:config": "bash scripts/backup/backup-config.sh",
|
|
"backup:restore": "bash scripts/backup/restore.sh",
|
|
"backup:verify": "bash scripts/backup/verify.sh",
|
|
"backup:cleanup": "bash scripts/backup/cleanup-old.sh",
|
|
"backup:list": "bash scripts/backup/restore.sh list",
|
|
"validate:schema": "node scripts/validate-schema.js",
|
|
"validate:structured-data": "node .agents/seo-specialist/validate-structured-data.js"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/node": "^8.3.4",
|
|
"@astrojs/sitemap": "^3.7.1",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"astro": "^4.5.0",
|
|
"compression": "^1.8.1",
|
|
"express": "^5.2.1",
|
|
"nodemailer": "^8.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/tailwind": "^5.1.0",
|
|
"@playwright/test": "^1.58.2",
|
|
"@types/nodemailer": "^7.0.11",
|
|
"playwright": "^1.58.2",
|
|
"tailwindcss": "^3.4.1"
|
|
}
|
|
}
|