UNPKG

@entro314labs/at3-toolkit

Version:

Advanced development toolkit for AT3 Stack projects

87 lines (86 loc) 2.8 kB
{ "name": "ait3e-project", "version": "0.1.0", "private": true, "description": "AIT3E Stack - AI + T3 + Edge", "type": "module", "engines": { "node": ">=22.x", "pnpm": ">=10.22.0" }, "packageManager": "pnpm@10.22.0", "scripts": { "dev": "next dev", "dev:turbo": "next dev --turbo", "build": "next build", "build:analyze": "ANALYZE=true pnpm build", "start": "next start", "lint": "biome check .", "lint:fix": "biome check --fix .", "format": "biome format --write .", "format:check": "biome format .", "typecheck": "tsc --noEmit", "test": "vitest", "test:ui": "vitest --ui", "test:browser": "vitest --config vitest.browser.config.ts", "test:e2e": "playwright test", "test:e2e:ui": "playwright test --ui", "test:ci": "vitest run --coverage", "validate": "pnpm typecheck && pnpm lint && pnpm format:check", "validate:full": "pnpm validate && pnpm test:ci && pnpm build", "db:generate": "supabase gen types typescript --project-id $SUPABASE_PROJECT_ID > src/types/database.types.ts", "db:local": "supabase gen types typescript --local > src/types/database.types.ts", "db:push": "supabase db push", "db:reset": "supabase db reset", "clean": "rm -rf .next .turbo node_modules/.cache", "prepare": "husky", "commit": "git-cz" }, "dependencies": { "@ai-sdk/anthropic": "^2.0.47", "@ai-sdk/google": "^2.0.43", "@ai-sdk/openai": "^2.0.72", "@tanstack/react-query": "^5.90.10", "@tanstack/react-query-devtools": "^5.91.0", "ai": "^5.0.101", "clsx": "^2.1.1", "framer-motion": "^12.23.24", "lucide-react": "^0.554.0", "next": "16.0.4", "next-themes": "^0.4.6", "react": "19.2.0", "react-dom": "19.2.0", "tailwind-merge": "^3.4.0", "zod": "^4.1.13", "zustand": "^5.0.8" }, "devDependencies": { "@biomejs/biome": "^2.3.7", "@commitlint/cli": "^20.1.0", "@commitlint/config-conventional": "^20.0.0", "@next/bundle-analyzer": "16.0.4", "@playwright/test": "^1.56.1", "@tailwindcss/postcss": "^4.1.17", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/node": "^24.10.1", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.1", "@vitest/browser": "^4.0.13", "@vitest/coverage-v8": "^4.0.13", "@vitest/ui": "^4.0.13", "autoprefixer": "^10.4.22", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "husky": "^9.1.7", "jsdom": "^27.2.0", "lint-staged": "^16.2.7", "playwright": "^1.56.1", "postcss": "^8.5.6", "tailwindcss": "^4.1.17", "typescript": "^5.9.3", "vitest": "^4.0.13" } }