-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
30 lines (30 loc) · 1.15 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": "@formio/formio-webhook-receiver",
"version": "1.0.0",
"description": "This shows how to implement a form.io webhook receiver.",
"main": "index.js",
"scripts": {
"start:basic": "node basic",
"start:validation": "node validation",
"deploy:basic": "claudia create --name formio-webhook-receiver-basic --handler basic/lambda.handler --config basic.claudia.json --deploy-proxy-api --region us-west-2",
"deploy:validation": "claudia create --name formio-webhook-receiver-validation --handler validation/lambda.handler --config validation.claudia.json --deploy-proxy-api --region us-west-2",
"update:basic": "claudia update --config basic.claudia.json",
"update:validation": "claudia update --config validation.claudia.json"
},
"author": "Travis Tidwell <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-serverless-express": "^3.3.5",
"basic-auth": "^2.0.1",
"body-parser": "^1.18.3",
"dotenv": "^6.1.0",
"eslint": "^5.6.1",
"eslint-config-formio": "^1.1.4",
"express": "^4.16.3",
"lodash": "^4.17.11",
"method-override": "^3.0.0"
},
"devDependencies": {
"claudia": "^5.1.2"
}
}