-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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"
]
}