feat: Complete platform enhancement with multi-tenant architecture
Major additions: - Territory manager system with application workflow - Custom pricing and page builder with Craft.js - Enhanced Stripe Connect onboarding - CodeReadr QR scanning integration - Kiosk mode for venue sales - Super admin dashboard and analytics - MCP integration for AI-powered operations Infrastructure improvements: - Centralized API client and routing system - Enhanced authentication with organization context - Comprehensive theme management system - Advanced event management with custom tabs - Performance monitoring and accessibility features Database schema updates: - Territory management tables - Custom pages and pricing structures - Kiosk PIN system - Enhanced organization profiles - CodeReadr integration tables 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
21
package.json
21
package.json
@@ -6,18 +6,27 @@
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro check && astro build",
|
||||
"build": "NODE_OPTIONS='--max-old-space-size=8192' astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro",
|
||||
"typecheck": "astro check"
|
||||
"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"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.4",
|
||||
"@astrojs/node": "^9.3.0",
|
||||
"@astrojs/react": "^4.3.0",
|
||||
"@astrojs/tailwind": "^6.0.2",
|
||||
"@craftjs/core": "^0.2.12",
|
||||
"@craftjs/utils": "^0.2.5",
|
||||
"@modelcontextprotocol/sdk": "^1.0.3",
|
||||
"@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",
|
||||
"@tailwindcss/vite": "^4.1.11",
|
||||
"@types/bcrypt": "^5.0.2",
|
||||
@@ -29,7 +38,9 @@
|
||||
"dotenv": "^17.1.0",
|
||||
"node-cron": "^4.2.0",
|
||||
"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",
|
||||
@@ -40,8 +51,12 @@
|
||||
"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",
|
||||
"typescript": "^5.8.3"
|
||||
"eslint": "^9.31.0",
|
||||
"typescript": "^5.8.3",
|
||||
"typescript-eslint": "^8.36.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user