{ "name": "labelapp", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev --turbopack", "build": "next build", "start": "next start", "typecheck": "tsc --noEmit", "lint": "eslint", "db:generate": "drizzle-kit generate", "db:migrate": "bun run scripts/migrate.ts", "db:push": "drizzle-kit push", "db:studio": "drizzle-kit studio", "seed": "bun run scripts/seed.ts", "assign": "bun run scripts/assign.ts", "export": "bun run scripts/export.ts", "dump": "bun run scripts/dump-all.ts", "test": "bun test app/ lib/ && playwright test", "test:api": "bun test app/ lib/", "test:e2e": "playwright test", "test:e2e:ui": "playwright test --ui" }, "dependencies": { "@base-ui/react": "^1.3.0", "@sec-cybert/schemas": "workspace:*", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "drizzle-orm": "^0.45.2", "lucide-react": "^1.7.0", "next": "16.2.1", "postgres": "^3.4.8", "react": "19.2.4", "react-dom": "19.2.4", "shadcn": "^4.1.1", "tailwind-merge": "^3.5.0", "tw-animate-css": "^1.4.0" }, "devDependencies": { "@playwright/test": "^1.58.2", "@tailwindcss/postcss": "^4", "@types/bun": "^1.3.11", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", "drizzle-kit": "^0.31.10", "eslint": "^9", "eslint-config-next": "16.2.1", "tailwindcss": "^4", "typescript": "^5" }, "ignoreScripts": [ "sharp", "unrs-resolver" ], "trustedDependencies": [ "sharp", "unrs-resolver" ] }