UNPKG

convert-lambda-to-express

Version:

Wrapper to run lambda on express. Works great for running lambdas as an express server during development but is production ready. Developed to work in conjunction with matthewkeil/full-stack-pattern cdk construct.

78 lines (77 loc) 2.1 kB
{ "name": "convert-lambda-to-express", "version": "1.3.1", "description": "Wrapper to run lambda on express. Works great for running lambdas as an express server during development but is production ready. Developed to work in conjunction with matthewkeil/full-stack-pattern cdk construct.", "scripts": { "node": "node", "ts": "npm run node -- -r ts-node/register", "test": "jest", "lint": "eslint --fix .", "build": "rm -rf dist && tsc --project tsconfig.build.json", "postversion": "git push --tags" }, "dependencies": { "@types/cors": "^2.8.12", "@types/express": "^4.17.13", "aws-sdk": "^2.1017.0", "chokidar": "^3.5.2", "cors": "^2.8.5", "express": "^4.17.1", "helmet": "^4.6.0", "morgan": "^1.10.0", "nodemon": "^2.0.15", "winston": "^3.3.3" }, "devDependencies": { "@types/aws-lambda": "^8.10.84", "@types/jest": "^27.0.2", "@types/morgan": "^1.9.3", "@types/node": "^15.12.4", "@types/nodemon": "^1.19.1", "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "eslint": "^8.3.0", "eslint-config-prettier": "^8.3.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.3", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.3.1", "prettier": "^2.4.1", "ts-jest": "^27.0.7", "ts-node": "^10.4.0", "typescript": "^4.3.4" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "license": "MIT", "author": "Matthew Keil", "maintainers": [ { "name": "Matthew Keil (matthewkeil)", "email": "me@matthewkeil.com" } ], "repository": { "type": "git", "url": "https://github.com/matthewkeil/convert-lambda-to-express.git" }, "bugs": { "url": "https://github.com/matthewkeil/convert-lambda-to-express/issues" }, "keywords": [ "lambda", "convert", "express", "aws-lambda", "developer-tools", "prevent lock-in", "lambda to express", "amazon", "aws", "local", "run" ] }