{ "name": "backend", "version": "1.0.0", "private": true, "type": "module", "scripts": { "dev": "bun --watch src/server.ts", "build": "tsc", "start": "bun src/server.ts", "type-check": "tsc --noEmit", "lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0" }, "dependencies": { "cors": "^2.8.5", "express": "^4.18.2", "openai": "^4.24.1" }, "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "eslint": "^8.55.0", "tsx": "^4.21.0", "typescript": "^5.3.3" } }