{ "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", "dotenv": "^17.4.2", "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" } }