Files
metabuilder/package.json
copilot-swe-agent[bot] bccc336c7e refactor: replace code generation with direct JSON interpretation
- Removed code generators (e2e/generators, storybook/generators)
- Created JSON test runner that executes Playwright tests directly from JSON
- Created JSON story loader that renders Storybook stories directly from JSON
- No intermediate code generation - JSON is executable/renderable at runtime
- json-packages.spec.ts auto-discovers and runs all package tests from JSON
- DynamicStory component renders stories from JSON definitions
- True meta/abstract architecture: configuration itself is executable
- Single source of truth: JSON definitions only (no generated .spec.ts or .stories.tsx)
- Changes to JSON take effect immediately without regeneration
- Added comprehensive READMEs explaining the interpretation approach

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2026-01-16 18:59:13 +00:00

35 lines
1.2 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"
},
"workspaces": [
"dbal/development",
"frontends/nextjs",
"frontends/dbal",
"config",
"storybook"
],
"devDependencies": {
"@playwright/test": "^1.57.0",
"jsdom": "^27.4.0"
}
}