{ "name": "eatme-backend", "version": "0.1.0", "private": true, "description": "EatMe bistro — attendance tracking API", "type": "commonjs", "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc --noEmit && node esbuild.config.js", "start": "node dist/index.js", "typecheck": "tsc --noEmit" }, "dependencies": { "better-sqlite3": "^11.9.1", "cookie-parser": "^1.4.7", "cors": "^2.8.5", "dotenv": "^16.4.7", "express": "^4.21.2", "google-auth-library": "^9.15.1", "jsonwebtoken": "^9.0.2", "zod": "^3.24.2" }, "devDependencies": { "@types/better-sqlite3": "^7.6.12", "@types/cookie-parser": "^1.4.8", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/jsonwebtoken": "^9.0.7", "@types/node": "^22.10.2", "esbuild": "^0.28.2", "tsx": "^4.19.2", "typescript": "^5.7.2" } }