mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Updated Prisma from 6.19.1 to 7.2.0 (major version) - Migrated Prisma schema to remove datasource URL (Prisma 7.x requirement) - Updated PrismaClient initialization to pass datasourceUrl - Fixed API route handlers to accept NextRequest parameter - Updated MUI Grid component to include component prop for v7 compatibility - Added AWS SDK dependencies to DBAL development module - Created stub implementations for GitHub workflow log analysis functions Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
22 lines
1.1 KiB
JSON
22 lines
1.1 KiB
JSON
{
|
|
"scripts": {
|
|
"todos:scan": "python3 docs/todo/scans/scan-project-todos.py",
|
|
"todos:preview": "python3 tools/project-management/populate-kanban.py --dry-run --limit 10",
|
|
"todos:export": "python3 tools/project-management/populate-kanban.py --output todos.json",
|
|
"todos:export-critical": "python3 tools/project-management/populate-kanban.py --output todos-critical.json --filter-priority critical",
|
|
"todos:export-filtered": "python3 tools/project-management/populate-kanban.py --output todos-filtered.json --exclude-checklist",
|
|
"todos:test": "python3 tools/project-management/test_populate_kanban.py",
|
|
"todos:create": "python3 tools/project-management/populate-kanban.py --create",
|
|
"todos:help": "python3 tools/project-management/populate-kanban.py --help",
|
|
"todos:check": "python3 tools/project-management/check-new-todos.py",
|
|
"todos:baseline": "python3 tools/project-management/check-new-todos.py --save-baseline"
|
|
},
|
|
"devDependencies": {
|
|
"prisma": "^7.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^7.2.0",
|
|
"jszip": "^3.10.1"
|
|
}
|
|
}
|