-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1018 Bytes
/
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
{
"name": "lambda-async-file-upload",
"version": "1.0.0",
"description": "Asynchronously upload files to a faulty target system using step functions",
"main": "handler.js",
"dependencies": {
"@aws-sdk/client-s3": "^3.121.0",
"@aws-sdk/client-sfn": "^3.121.0"
},
"devDependencies": {
"esbuild": "^0.14.49",
"serverless-esbuild": "^1.31.0",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-offline": "^8.8.1",
"serverless-step-functions": "^3.7.0"
},
"scripts": {
"start": "sls offline start",
"build": "esbuild app.js --bundle --platform=node --target=node10.4",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flaviostutz/lambda-async-file-upload.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/flaviostutz/lambda-async-file-upload/issues"
},
"homepage": "https://github.com/flaviostutz/lambda-async-file-upload#readme"
}