Large uncommitted body of work accumulated across sessions on this branch -- committing as a checkpoint so it's tracked and future worktree-isolated agents see the real codebase instead of a stale ancestor commit. Covers the management app's dedicated Tailwind theme and templates, the club onboarding requirement/signup workflow (club/services/onboarding.py, requirement/status models, sign-up dashboard), fee/status auto-activation decoupling, referee management, and the new events calendar grid service layer. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ECGMEwrc2k4D8VQuwjstj9
31 lines
1.5 KiB
JSON
31 lines
1.5 KiB
JSON
{
|
|
"name": "rosterchief",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "npm run build:app && npm run build:controlpanel && npm run build:management",
|
|
"build:app": "tailwindcss -i ./assets/app.css -o ./static/css/app.css --minify",
|
|
"build:controlpanel": "tailwindcss -i ./assets/controlpanel.css -o ./static/css/controlpanel.css --minify",
|
|
"build:management": "tailwindcss -i ./assets/management.css -o ./static/css/management.css --minify",
|
|
"watch": "tailwindcss -i ./assets/app.css -o ./static/css/app.css --watch",
|
|
"watch:controlpanel": "tailwindcss -i ./assets/controlpanel.css -o ./static/css/controlpanel.css --watch",
|
|
"watch:management": "tailwindcss -i ./assets/management.css -o ./static/css/management.css --watch",
|
|
"vendor:chart": "node -e \"const fs=require('fs');const s=fs.readFileSync('node_modules/chart.js/dist/chart.umd.js','utf8').split('\\n').filter(l=>!l.startsWith('//# sourceMappingURL=')).join('\\n');fs.writeFileSync('static/js/chart.js',s)\""
|
|
},
|
|
"devDependencies": {
|
|
"@fontsource-variable/jetbrains-mono": "^5.2.8",
|
|
"@fontsource-variable/roboto": "^5.2.10",
|
|
"@fontsource-variable/tourney": "^5.2.8",
|
|
"@fontsource/barlow": "^5.3.0",
|
|
"@fontsource/barlow-condensed": "^5.3.0",
|
|
"@fontsource/ibm-plex-mono": "^5.3.0",
|
|
"@fontsource/ubuntu": "^5.2.8",
|
|
"@tailwindcss/cli": "^4.1.0",
|
|
"daisyui": "^5.0.0",
|
|
"tailwindcss": "^4.1.0"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "^4.5.1"
|
|
}
|
|
}
|