-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 802 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 802 Bytes
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
{
"name": "localstack-lambda",
"version": "1.0.0",
"description": "## Run Go Lambda locally with LocalStack and Serverless Framework",
"main": "index.js",
"scripts": {
"build": "sh build.sh",
"deploy:local": "serverless deploy --stage local",
"start": "npm run build && npm run deploy:local",
"watch": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/elad-da/localstack-lambda.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/elad-da/localstack-lambda/issues"
},
"homepage": "https://github.com/elad-da/localstack-lambda#readme",
"devDependencies": {
"concurrently": "^6.5.1",
"nodemon": "^2.0.19",
"serverless": "^2.72.3",
"serverless-localstack": "^0.4.36"
}
}