-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 840 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "oidc-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm function.zip || true",
"build": "zip -r function.zip . -x \"*.git*\"",
"update-function-configuration": "AWS_PAGER=\"\" aws lambda update-function-configuration --function-name dbt-docs --environment \"Variables={$(cat .env | tr '\n' ',' | sed 's/,$//')}\"",
"update-function-code": "AWS_PAGER=\"\" aws lambda update-function-code --function-name dbt-docs --zip-file fileb://function.zip",
"deploy": "npm run clean && npm run build && npm run update-function-code"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.726.1",
"@codegenie/serverless-express": "^4.16.0",
"express": "^4.21.2",
"express-openid-connect": "^2.17.1"
}
}