mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
Completed standardization of 15 dependency items across 35+ package.json files: 1. UUID: ^11.1.0 → ^13.0.0 (old/) 2. TypeScript: ~5.7.2 → ^5.9.3 (old/) 3. Tailwind CSS: All ^4.x → ^4.1.18 (5 files) 4. Vite: All ^7.x → ^7.3.1 (2 files) 5. Sass: All ^1.x → ^1.83.5 (5 files) 6. ESLint: All ^9.x → ^9.39.2 (3 files) 7. Framer Motion: All versions → ^12.29.0 (2 files) 8. Three.js: All versions → ^0.177.0 (2 files) 9. Lucide React: All versions → ^0.500.0 (2 files) 10. React: ^19.0.0 → ^19.2.3 (4+ files) 11. @types/react: All ^19.x → ^19.2.8 (6+ files) 12. Playwright: ^1.40.0 → ^1.49.1 (1 file) 13. Next.js: ^14.x → ^16.1.4 in primary apps (2 files) 14. React Hook Form: Skipped (already standardized) 15. Workspace packages: Skipped (no issues detected) Files Modified: - old/package.json (11 deps) - pastebin/package.json (7 deps) - exploded-diagrams/package.json (5 deps) - postgres/package.json (4 deps) - storybook/package.json (2 deps) - dockerterminal/frontend/package.json (2 deps) - workflowui/package.json (1 dep) - packagerepo/frontend/package.json (2 deps) - packagerepo/tests/package.json (1 dep) - frontends/dbal/package.json (1 dep) - dbal/development/package.json (1 dep) - codegen/package.json (mostly already compliant) - And 3 others with minor updates Legacy versions intentionally preserved: - React 18 projects (storybook, workflowui, packagerepo) - Next.js 15.x branches (exploded-diagrams, pastebin) - ESLint 8.x legacy (pastebin, workflow) Status: 13/13 actionable items completed (100% success rate) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
70 lines
2.1 KiB
JSON
70 lines
2.1 KiB
JSON
{
|
|
"name": "codesnippet",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint . --config eslint.config.mjs",
|
|
"lint:fix": "eslint . --config eslint.config.mjs --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"test:unit": "jest --coverage",
|
|
"quality-check": "node run-quality-check.mjs",
|
|
"quality-check:json": "node run-quality-check.mjs --format json --output .quality/report.json",
|
|
"quality-check:html": "node run-quality-check.mjs --format html --output .quality/report.html",
|
|
"quality-check:verbose": "node run-quality-check.mjs --verbose"
|
|
},
|
|
"dependencies": {
|
|
"@babel/standalone": "^7.24.0",
|
|
"@monaco-editor/react": "^4.6.0",
|
|
"@phosphor-icons/react": "^2.1.7",
|
|
"@reduxjs/toolkit": "^2.5.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"embla-carousel-react": "^8.6.0",
|
|
"framer-motion": "^12.29.0",
|
|
"idb": "^8.0.2",
|
|
"lucide-react": "^0.500.0",
|
|
"monaco-editor": "^0.52.2",
|
|
"next": "15.1.3",
|
|
"pyodide": "^0.23.0",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.0.0",
|
|
"react-error-boundary": "^4.0.11",
|
|
"react-hook-form": "^7.71.1",
|
|
"react-redux": "^9.2.0",
|
|
"react-resizable-panels": "^4.4.1",
|
|
"recharts": "^2.15.0",
|
|
"sonner": "^1.7.1",
|
|
"sucrase": "^3.35.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.1",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19",
|
|
"autoprefixer": "^10.4.17",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "15.1.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"postcss": "^8.4.35",
|
|
"sass": "^1.83.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5",
|
|
"typescript-eslint": "^8.53.1"
|
|
},
|
|
"overrides": {
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.0.0"
|
|
}
|
|
}
|