-
Notifications
You must be signed in to change notification settings - Fork 669
/
Copy pathpackage.json
22 lines (22 loc) · 904 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
{
"name": "@codegenie/serverless-alb-example",
"version": "1.0.0",
"description": "Example application for running Express on AWS Lambda backed by ALB",
"main": "src/index.js",
"scripts": {
"#postinstall": "mv node_modules src/node_modules",
"package": "aws cloudformation package --template-file ./template.yaml --output-template-file template.packaged.yaml --s3-bucket artifacts-123nsef",
"deploy": "aws cloudformation deploy --template-file ./template.packaged.yaml --stack-name ServerlessExpressDynamoDbExample --capabilities CAPABILITY_IAM",
"package-deploy": "npm run package && npm run deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@codegenie/serverless-express": "^4.3.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"pug": "^3.0.1"
}
}