Files
SixFlagsSuperCalendar/package.json
josh 8a68251beb
All checks were successful
Build and Deploy / Build & Push (push) Successful in 4m23s
feat: add debug script for inspecting raw API data per park+date
npm run debug -- --park greatadventure --date 2026-07-04

Prints the raw API response for that day alongside the parsed result
so mismatched or missing hours can be traced to their source.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-04 10:39:37 -04:00

35 lines
851 B
JSON

{
"name": "sixflags-super-calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"scrape": "tsx scripts/scrape.ts",
"scrape:force": "tsx scripts/scrape.ts --rescrape",
"discover": "tsx scripts/discover.ts",
"debug": "tsx scripts/debug.ts"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.3.0",
"playwright": "^1.59.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}