forked from jweisman/geonames-openrefine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
17 lines (17 loc) · 800 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "geonames-openrefine",
"dependencies": {
"aws-serverless-express": "^3.3.8",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "~4.17.1",
"pug": "^3.0.2"
},
"scripts": {
"start": "node src/index.js",
"package": "aws cloudformation package --template ./cloudformation.yaml --s3-bucket $npm_config_s3BucketName --output-template packaged-sam.yaml --region $npm_config_region",
"deploy": "aws cloudformation deploy --template-file packaged-sam.yaml --stack-name $npm_config_cloudFormationStackName --capabilities CAPABILITY_IAM --region $npm_config_region",
"package-deploy": "npm run package && npm run deploy",
"delete-stack": "aws cloudformation delete-stack --stack-name $npm_config_cloudFormationStackName --region $npm_config_region"
}
}