-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1.11 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
{
"name": "sample-serverless-apprepo-app",
"version": "1.0.0",
"description": "### Building serverless apps with components from the AWS Serverless Application Repository",
"main": "index.js",
"scripts": {
"package": "aws cloudformation package --template-file template.yml --output-template-file output.yml --s3-bucket sample-serverless-apprepo-app",
"deploy": "aws cloudformation deploy --template-file output.yml --stack-name sample-serverless-apprepo-app --capabilities CAPABILITY_IAM",
"describe": "aws cloudformation describe-stacks --stack-name sample-serverless-apprepo-app --query Stacks[].Outputs[].OutputValue --output text",
"qd": "npm run package && npm run deploy && npm run describe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simalexan/sample-serverless-apprepo-app.git"
},
"keywords": [],
"author": "Aleksandar Simovic <alexander.simovic@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simalexan/sample-serverless-apprepo-app/issues"
},
"homepage": "https://github.com/simalexan/sample-serverless-apprepo-app#readme"
}