Files
metabuilder/package.json
2025-12-25 11:26:45 +00:00

113 lines
4.1 KiB
JSON

{
"name": "metabuilder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"kill": "fuser -k 3000/tcp",
"typecheck": "tsc --noEmit",
"lint": "next lint && eslint .",
"lint:fix": "eslint . --fix",
"preview": "next start",
"dev:vite": "vite",
"build:vite": "tsc -b --noCheck && vite build",
"test": "vitest",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:ui": "vitest --ui",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test:unit && npm run test:e2e",
"act": "bash scripts/run-act.sh",
"act:lint": "bash scripts/run-act.sh -w ci.yml -j lint",
"act:e2e": "bash scripts/run-act.sh -w ci.yml -j test-e2e",
"setup-packages": "node scripts/setup-packages.cjs",
"postinstall": "node scripts/setup-packages.cjs",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate deploy",
"cpp:check": "node dbal/tools/cpp-build-assistant.cjs check",
"cpp:init": "node dbal/tools/cpp-build-assistant.cjs init",
"cpp:install": "node dbal/tools/cpp-build-assistant.cjs install",
"cpp:configure": "node dbal/tools/cpp-build-assistant.cjs configure",
"cpp:build": "node dbal/tools/cpp-build-assistant.cjs build",
"cpp:test": "node dbal/tools/cpp-build-assistant.cjs test",
"cpp:clean": "node dbal/tools/cpp-build-assistant.cjs clean",
"cpp:rebuild": "node dbal/tools/cpp-build-assistant.cjs rebuild",
"cpp:full": "node dbal/tools/cpp-build-assistant.cjs full",
"screenshot": "npx playwright install chromium && npx tsx scripts/capture-screenshot.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.958.0",
"@aws-sdk/lib-storage": "^3.958.0",
"@aws-sdk/s3-request-presigner": "^3.958.0",
"@github/spark": ">=0.43.1 <1",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^4.1.3",
"@monaco-editor/react": "^4.7.0",
"@next/third-parties": "^16.1.1",
"@octokit/core": "^6.1.4",
"@phosphor-icons/react": "^2.1.7",
"@prisma/client": "^6.19.1",
"@tanstack/react-query": "^5.83.1",
"@types/jszip": "^3.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.5.2",
"fengari-interop": "^0.1.4",
"fengari-web": "^0.1.4",
"framer-motion": "^12.6.2",
"input-otp": "^1.4.2",
"jszip": "^3.10.1",
"lucide-react": "^0.484.0",
"marked": "^17.0.1",
"next": "16.1.1",
"next-themes": "^0.4.6",
"octokit": "^5.0.5",
"react": "19.2.3",
"react-day-picker": "^9.6.7",
"react-dom": "19.2.3",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.69.0",
"react-resizable-panels": "^2.1.7",
"recharts": "^2.15.1",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.1",
"three": "^0.175.0",
"tw-animate-css": "^1.2.4",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^9.28.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prisma": "^6.19.1",
"sass": "^1.97.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.3.0"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}