-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.1 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
{
"name": "lambda-reward-verifier",
"version": "1.0.0",
"description": "Verifies that a user posted about promoter on IG.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/prizeprofile/lambda-reward-verifier.git"
},
"author": "Michael Bausano",
"license": "ISC",
"homepage": "https://github.com/prizeprofile/lambda-reward-verifier#readme",
"scripts": {
"create:stage": "claudia create --name stage-reward-verifier --region eu-west-1 --handler index.handler --role arn:aws:iam::490542543401:role/DynamoDBFullAccess --config claudia-stage.json",
"create:prod": "claudia create --name prod-reward-verifier --region eu-west-1 --handler index.handler --role arn:aws:iam::490542543401:role/DynamoDBFullAccess --config claudia-prod.json",
"deploy:stage": "claudia update --config claudia-stage.json",
"deploy:prod": "claudia update --config claudia-prod.json"
},
"directories": {
"src": "src",
"test": "test"
},
"dependencies": {
"aws-sdk": "^2.250.1",
"axios": "^0.18.0"
},
"devDependencies": {
"claudia": "^5.1.1"
}
}