{
  "name": "terminko-backend",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "tsc",
    "prestart": "npm run build",
    "start": "node dist/index.js",
    "start:prod": "cross-env NODE_ENV=production node dist/index.js",
    "prod": "cross-env NODE_ENV=production node dist/index.js",
    "prisma": "prisma",
    "migrate": "prisma migrate dev",
    "migrate:deploy:prod": "node scripts/run-with-env.mjs --production npx prisma migrate deploy",
    "generate": "prisma generate",
    "server:install": "npm ci --no-audit --no-fund",
    "server:generate": "node scripts/run-with-env.mjs --production npx prisma generate",
    "server:migrate": "node scripts/run-with-env.mjs --production npx prisma migrate deploy",
    "server:setup": "npm ci --no-audit --no-fund && node scripts/run-with-env.mjs --production npx prisma generate && node scripts/run-with-env.mjs --production npx prisma migrate deploy",
    "seed": "prisma db seed"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.1057.0",
    "@aws-sdk/s3-request-presigner": "^3.1057.0",
    "@prisma/client": "^5.19.1",
    "bcryptjs": "^2.4.3",
    "cors": "^2.8.5",
    "dotenv": "^16.4.5",
    "express": "^4.19.2",
    "jsonwebtoken": "^9.0.2",
    "luxon": "^3.7.2"
  },
  "devDependencies": {
    "@types/bcryptjs": "^2.4.6",
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/jsonwebtoken": "^9.0.6",
    "@types/luxon": "^3.7.1",
    "@types/node": "^20.14.12",
    "cross-env": "^7.0.3",
    "prisma": "^5.19.1",
    "ts-node-dev": "^2.0.0",
    "tsx": "^4.16.5",
    "typescript": "^5.5.4"
  },
  "prisma": {
    "seed": "tsx prisma/seed.ts"
  }
}
