{ "name": "yaltopia-ticket-email", "private": true, "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", "build": "tsc -b && vite build", "lint": "eslint .", "preview": "vite preview", "server:dev": "tsx watch server.ts", "server:build": "tsc server.ts --outDir server-dist --target es2020 --module commonjs --esModuleInterop --allowSyntheticDefaultImports --strict", "server:start": "node server-dist/server.js", "start": "npm run server:start", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest tests/unit", "test:integration": "jest tests/integration", "test:e2e": "jest tests/e2e", "test:ci": "jest --ci --coverage --watchAll=false", "validate": "npm run lint && npm run type-check && npm run test:ci && npm run build", "type-check": "tsc --noEmit", "type-check:watch": "tsc --noEmit --watch", "clean": "rm -rf dist server-dist node_modules/.cache coverage", "docker:build": "docker build -t email-service .", "docker:run": "docker run -d -p 3001:3001 --env-file .env email-service", "docker:dev": "docker-compose up -d", "docker:stop": "docker-compose down" }, "dependencies": { "@types/cors": "^2.8.19", "@types/express": "^5.0.6", "cors": "^2.8.6", "dotenv": "^17.3.1", "express": "^5.2.1", "express-rate-limit": "^8.3.1", "helmet": "^8.1.0", "react": "^19.2.0", "react-dom": "^19.2.0", "resend": "^6.9.3", "tsx": "^4.21.0", "zod": "^4.3.6" }, "devDependencies": { "@eslint/js": "^9.39.1", "@types/jest": "^30.0.0", "@types/node": "^24.10.1", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "@types/supertest": "^7.2.0", "@vitejs/plugin-react": "^5.1.1", "autoprefixer": "^10.4.27", "eslint": "^9.39.1", "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.4.24", "globals": "^16.5.0", "jest": "^30.3.0", "postcss": "^8.5.8", "supertest": "^7.2.2", "tailwindcss": "^3.4.19", "ts-jest": "^29.4.6", "typescript": "~5.9.3", "typescript-eslint": "^8.48.0", "vite": "^7.3.1" } }