Files
touchbase/package.json
noisedestroyers 9e7d589c22 Verify-suite work (this session):
- M  package.json — added typecheck, test:e2e, verify scripts; added @playwright/test devDep
  - M  pnpm-lock.yaml
  - M  .gitignore — Playwright artifacts
  - M  tsconfig.json — auto-modified by Next.js include path
  - ??  e2e/ — config + fixtures + 3 specs
  - ??  playwright.config.ts
  - ??  scripts/verify.sh, scripts/db-test-truncate.sql
2026-05-10 07:42:46 -04:00

66 lines
1.7 KiB
JSON

{
"name": "touchbase",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"verify": "scripts/verify.sh",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:reset": "prisma migrate reset --force",
"db:studio": "prisma studio",
"db:test:reset": "dotenv -e .env.test -- prisma migrate reset --force",
"db:bootstrap": "scripts/db-bootstrap.sh",
"db:seed": "tsx prisma/seed.ts",
"worker": "tsx scripts/worker.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@stripe/react-stripe-js": "^6.3.0",
"@stripe/stripe-js": "^9.4.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"next": "16.2.4",
"next-auth": "5.0.0-beta.31",
"nodemailer": "^8.0.7",
"pg": "^8.20.0",
"pg-boss": "^12.18.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"stripe": "^22.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^22",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.1.5",
"dotenv": "^17.4.2",
"dotenv-cli": "^9.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.5"
}
}