-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "sendgrid-eventkit-lambda-mongodb",
"repository": {
"type": "git",
"url": "https://github.com/memiah/sendgrid-eventkit-lambda-mongodb.git"
},
"scripts": {
"setup": "docker run --detach --name sendgrid-mongo --expose 27017 -p 127.0.0.1:27017:27017/tcp mongo",
"test": "node app.js",
"cleanup": "docker stop sendgrid-mongo && docker rm sendgrid-mongo",
"update-staging": "zip -r ./lambda.zip index.js src/ node_modules/ && aws lambda update-function-code --function-name sendgrid-eventkit-testing --zip-file fileb://./lambda.zip && rm ./lambda.zip",
"update-production": "zip -r ./lambda.zip index.js src/ node_modules/ && aws lambda update-function-code --function-name sendgrid-eventkit-private --zip-file fileb://./lambda.zip && rm ./lambda.zip"
},
"version": "1.0.0",
"description": "lambda functions for sendgrid integration with mongo",
"main": "index.js",
"author": "SGT",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1619.0",
"dotenv": "^16.4.5",
"mongoose": "^8.3.4"
}
}