imbusy/backend/package.json
2025-06-21 10:25:06 +09:00

27 lines
646 B
JSON

{
"name": "imbusy-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js",
"clean": "rm -rf dist",
"watch": "npm run build -- --watch",
"deploy": "./deploy.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/aws-lambda": "^8.10.150",
"@types/node": "^24.0.3",
"esbuild": "^0.25.5",
"typescript": "^5.8.3"
},
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.830.0",
"aws-sdk": "^2.1692.0"
}
}