UNPKG

@entro314labs/at3-toolkit

Version:

Advanced development toolkit for AT3 Stack projects

90 lines (89 loc) 2.89 kB
{ "name": "ait3e-project", "version": "0.1.0", "private": true, "description": "AIT3E Stack - AI + T3 + Edge", "type": "module", "engines": { "node": ">=22.12.0", "pnpm": ">=10.14.0" }, "packageManager": "pnpm@10.14.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/openai": "^0.0.66", "@ai-sdk/anthropic": "^0.0.50", "@ai-sdk/google": "^0.0.48", "@supabase/ssr": "^0.7.0", "@supabase/supabase-js": "^2.54.0", "@tanstack/react-query": "^5.84.2", "@tanstack/react-query-devtools": "^5.84.2", "ai": "^3.4.32", "clsx": "^2.1.1", "framer-motion": "^12.23.12", "lucide-react": "^0.539.0", "next": "15.4.6", "next-themes": "^0.4.6", "react": "19.1.1", "react-dom": "19.1.1", "tailwind-merge": "^3.3.1", "zod": "^4.0.15", "zustand": "^5.0.7" }, "devDependencies": { "@biomejs/biome": "^2.1.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@next/bundle-analyzer": "15.4.6", "@playwright/test": "^1.54.2", "@tailwindcss/postcss": "^4.1.11", "@testing-library/jest-dom": "^6.6.4", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/node": "^24.2.1", "@types/react": "^19.1.9", "@types/react-dom": "^19.1.7", "@vitejs/plugin-react": "^5.0.0", "@vitest/browser": "^3.2.4", "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4", "autoprefixer": "^10.4.21", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "husky": "^9.1.7", "jsdom": "^26.1.0", "lint-staged": "^16.1.5", "playwright": "^1.54.2", "postcss": "^8.5.6", "supabase": "^2.33.9", "tailwindcss": "^4.1.11", "typescript": "^5.9.2", "vitest": "^3.2.4" } }