mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
- Update React from 18.2.0 to 19.2.3 in workflowui - Update Next.js to latest stable (15.1.3, 16.1.2) - Update @reduxjs/toolkit to 1.9.7 and 2.5.2 across packages - Update React-Redux to 9.2.0 for better React 19 compatibility - Update TypeScript to 5.9.3 for latest language features - Update testing libraries: Jest, Vitest, Playwright to latest - Update build tools: Vite, ESLint to current versions - Update @tanstack/react-query to 5.91.2 - Update Framer Motion to 13.0.3 - Update Three.js to 0.177.0 - Update Tailwind CSS to 4.1.18 (consistent across packages) - Update Monaco Editor to 4.7.0 - Update React Router to 7.17.2 - Update date-fns to 3.6.0 - Update Dexie to 4.0.8 - Update Sass to 1.83.5 - Update type definitions (@types/node, @types/react, etc.) - Update AWS SDK for S3 integration - Add multi-version peer dependency support for gradual upgrades - Ensure compatibility across monorepo workspaces Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
46 lines
1.5 KiB
JSON
46 lines
1.5 KiB
JSON
{
|
|
"name": "metabuilder-root",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "MetaBuilder - Data-driven multi-tenant platform",
|
|
"scripts": {
|
|
"db:generate": "npm --prefix dbal/development run db:generate",
|
|
"db:push": "npm --prefix dbal/development run db:push",
|
|
"db:migrate": "npm --prefix dbal/development run db:migrate",
|
|
"db:seed": "npm --prefix dbal/development run db:seed",
|
|
"dev": "npm --prefix frontends/nextjs run dev",
|
|
"build": "npm --prefix frontends/nextjs run build",
|
|
"typecheck": "npm --prefix frontends/nextjs run typecheck",
|
|
"lint": "npm --prefix frontends/nextjs run lint",
|
|
"test": "npm --prefix frontends/nextjs run test",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"test:e2e:report": "playwright show-report",
|
|
"test:e2e:json": "playwright test e2e/json-packages.spec.ts",
|
|
"migrate:workflows": "ts-node scripts/migrate-workflows-to-n8n.ts",
|
|
"migrate:workflows:dry": "ts-node scripts/migrate-workflows-to-n8n.ts --dry-run"
|
|
},
|
|
"workspaces": [
|
|
"redux/slices",
|
|
"redux/hooks",
|
|
"redux/adapters",
|
|
"redux/hooks-data",
|
|
"redux/hooks-auth",
|
|
"redux/hooks-canvas",
|
|
"redux/core-hooks",
|
|
"redux/api-clients",
|
|
"redux/timing-utils",
|
|
"dbal/development",
|
|
"frontends/nextjs",
|
|
"frontends/dbal",
|
|
"config",
|
|
"storybook"
|
|
],
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.1",
|
|
"jsdom": "^27.4.0"
|
|
}
|
|
}
|