2026-05-12 01:04:17 -05:00
|
|
|
{
|
|
|
|
|
"name": "queuenorth-website",
|
|
|
|
|
"private": true,
|
2026-05-28 01:10:38 -05:00
|
|
|
"version": "0.8.3",
|
2026-05-12 01:04:17 -05:00
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "concurrently \"vite\" \"node server/index.js\"",
|
feat(seo): publish privacy policy, remove street address, prerender all routes (batch 0.9.3)
Client directive (Levi Halford, 2026-08-01) ahead of Google/Meta lead forms.
Privacy policy:
- Publish approved policy verbatim at /privacy-policy (src/data/privacyPolicy.js
is the single source of truth; 292/292 source lines verified present)
- Privacy Policy link in the footer of every page
- Effective/Last Updated 2026-07-31, privacy@queuenorth.com as mailto
Remove St. Petersburg street address from every surface named in the brief:
footer, contact page, schema markup, SEO metadata, Google Maps links. Collapse
ProfessionalService + Organization schema into a single Organization with
areaServed: United States; drop geo coordinates, priceRange, openingHours.
Add the approved US-coverage sentence to About. No replacement address.
Crawler visibility (the site previously served 0 bytes of body HTML without JS):
- Prerender all 19 routes at build time via src/entry-server.jsx + scripts/prerender.js
- Hoist title/meta/canonical/JSON-LD into <head>; renderToString does not do this
and react-helmet-async's context is empty under React 19
- Serve prerendered HTML; return a real 404 for unknown paths instead of 200
- Hydrate instead of discarding the prerendered markup
SEO/perf:
- Titles <=60 and descriptions <=160 chars across all pages
- Add BreadcrumbList to interior pages, WebSite to home
- Generate sitemap.xml from the route list with git-derived lastmod
- 301 duplicate URL forms (trailing slash, //, /index.html), preserving query
- Immutable caching for content-hashed assets; no-cache for HTML
- Split the 522 KB bundle into app/react-vendor/router/icons
- loading/decoding/fetchpriority + per-route hero preload; drop unused asset
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-01 01:45:52 -05:00
|
|
|
"build": "vite build && vite build --ssr src/entry-server.jsx --outDir dist-ssr && node scripts/prerender.js",
|
|
|
|
|
"build:client": "vite build",
|
2026-05-12 01:04:17 -05:00
|
|
|
"preview": "vite preview",
|
|
|
|
|
"start": "node server/index.js",
|
2026-05-12 01:57:55 -05:00
|
|
|
"server": "node server/index.js",
|
|
|
|
|
"docker:build": "docker build -t queuenorth-website .",
|
|
|
|
|
"docker:run": "docker run -p 3001:3001 --rm --name queuenorth -v queuenorth-db:/app/db -v queuenorth-logs:/app/logs --env NODE_ENV=production queuenorth-website",
|
|
|
|
|
"docker:compose:up": "docker-compose up -d",
|
|
|
|
|
"docker:compose:down": "docker-compose down",
|
2026-05-14 01:18:44 -05:00
|
|
|
"docker:compose:logs": "docker-compose logs -f",
|
|
|
|
|
"docker:push": "bash scripts/docker-push.sh",
|
|
|
|
|
"docker:test": "bash scripts/docker-test.sh"
|
2026-05-12 01:04:17 -05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-05-13 18:37:32 -05:00
|
|
|
"@radix-ui/react-dialog": "^1.1.0",
|
2026-05-13 22:07:35 -05:00
|
|
|
"@radix-ui/react-visually-hidden": "^1.2.4",
|
2026-05-13 18:37:32 -05:00
|
|
|
"better-sqlite3": "^11.8.0",
|
|
|
|
|
"cors": "^2.8.6",
|
|
|
|
|
"express": "^4.21.2",
|
|
|
|
|
"express-rate-limit": "^8.5.1",
|
|
|
|
|
"helmet": "^8.1.0",
|
|
|
|
|
"lucide-react": "^0.468.0",
|
2026-05-12 01:04:17 -05:00
|
|
|
"react": "^19.0.0",
|
|
|
|
|
"react-dom": "^19.0.0",
|
2026-05-17 20:03:42 -05:00
|
|
|
"react-helmet-async": "^3.0.0",
|
2026-05-12 01:04:17 -05:00
|
|
|
"react-router-dom": "^7.1.3",
|
|
|
|
|
"sonner": "^1.7.0",
|
2026-05-13 22:07:35 -05:00
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2026-05-17 22:08:21 -05:00
|
|
|
"zod": "^3.24.2"
|
2026-05-12 01:04:17 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/express": "^5.0.0",
|
|
|
|
|
"@types/node": "^22.10.5",
|
|
|
|
|
"@types/react": "^19.0.2",
|
|
|
|
|
"@types/react-dom": "^19.0.2",
|
|
|
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
|
|
|
"autoprefixer": "^10.4.20",
|
2026-05-13 18:37:32 -05:00
|
|
|
"concurrently": "^9.1.2",
|
2026-05-12 01:04:17 -05:00
|
|
|
"postcss": "^8.4.49",
|
2026-05-13 18:37:32 -05:00
|
|
|
"tailwindcss": "^3.4.17",
|
|
|
|
|
"vite": "^6.0.7"
|
2026-05-12 01:04:17 -05:00
|
|
|
}
|
|
|
|
|
}
|