Major fixes and improvements: - Fixed edit event button functionality with proper event handlers and DOM ready state checking - Added status column to tickets table via Supabase migration to resolve 500 API errors - Updated stats API to correctly calculate revenue from decimal price values - Resolved authentication redirect loops by fixing cookie configuration for Docker environment - Fixed Permissions-Policy header syntax errors - Added comprehensive debugging and error handling for event management - Implemented modal-based event editing with form validation and API integration - Enhanced event data loading with proper error handling and user feedback 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
78 lines
2.6 KiB
JSON
78 lines
2.6 KiB
JSON
{
|
|
"name": "black-canyon-tickets",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"description": "Elegant ticketing for mountain-town events",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "NODE_OPTIONS='--max-old-space-size=8192' astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"typecheck": "astro check",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"mcp:stripe": "npx @stripe/mcp --tools=all --api-key=$STRIPE_SECRET_KEY",
|
|
"mcp:stripe:debug": "npx @modelcontextprotocol/inspector npx @stripe/mcp --tools=all --api-key=$STRIPE_SECRET_KEY",
|
|
"docker:build": "./scripts/docker-build.sh",
|
|
"docker:build:version": "./scripts/docker-build.sh",
|
|
"docker:deploy": "./scripts/docker-deploy.sh",
|
|
"docker:up": "docker-compose up -d",
|
|
"docker:down": "docker-compose down",
|
|
"docker:logs": "docker-compose logs -f",
|
|
"docker:prod:up": "docker-compose -f docker-compose.prod.yml up -d",
|
|
"docker:prod:down": "docker-compose -f docker-compose.prod.yml down",
|
|
"docker:astro:up": "docker-compose -f docker-compose.astro.yml up -d --build",
|
|
"docker:astro:down": "docker-compose -f docker-compose.astro.yml down",
|
|
"docker:astro:logs": "docker-compose -f docker-compose.astro.yml logs -f",
|
|
"docker:dev": "docker-compose up -d",
|
|
"docker:dev:build": "docker-compose up -d --build"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.9.4",
|
|
"@astrojs/node": "^9.3.0",
|
|
"@astrojs/react": "^4.3.0",
|
|
"@astrojs/tailwind": "^5.1.1",
|
|
"@craftjs/core": "^0.2.12",
|
|
"@craftjs/utils": "^0.2.5",
|
|
"@modelcontextprotocol/sdk": "^1.0.3",
|
|
"@playwright/test": "^1.54.1",
|
|
"@sentry/astro": "^9.35.0",
|
|
"@sentry/node": "^9.35.0",
|
|
"@stripe/connect-js": "^3.3.25",
|
|
"@supabase/ssr": "^0.0.10",
|
|
"@supabase/supabase-js": "^2.50.3",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"astro": "^5.11.0",
|
|
"bcrypt": "^6.0.0",
|
|
"cheerio": "^1.1.0",
|
|
"dotenv": "^17.1.0",
|
|
"node-cron": "^4.2.0",
|
|
"playwright": "^1.54.1",
|
|
"puppeteer": "^24.12.1",
|
|
"qrcode": "^1.5.4",
|
|
"ramda": "^0.31.3",
|
|
"react": "^19.1.0",
|
|
"react-contenteditable": "^3.3.7",
|
|
"react-dom": "^19.1.0",
|
|
"react-easy-crop": "^5.4.2",
|
|
"resend": "^4.6.0",
|
|
"stripe": "^18.3.0",
|
|
"tailwindcss": "^3.4.17",
|
|
"uuid": "^11.1.0",
|
|
"winston": "^3.17.0",
|
|
"zod": "^3.25.75"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.31.0",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/uuid": "^10.0.0",
|
|
"eslint": "^9.31.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.36.0"
|
|
}
|
|
}
|