-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
30
31
32
{
"name": "auth-at-edge",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Sorry, there aren't any tests\"; exit 1",
"tsc": "tsc -b",
"webpack": "webpack --progress",
"analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer ./stats.json",
"build": "npm run webpack",
"update-dependencies": "for DIR in $(ls -d lambda-edge/*); do [[ ! -f ${DIR}/package.json ]] || (cd ${DIR} && echo \"Updating ${DIR} ...\" && npm --depth 9999 update); done",
"postinstall": "for DIR in $(ls -d lambda-edge/*); do [[ ! -f ${DIR}/package.json ]] || (cd ${DIR} && echo \"Updating ${DIR} ...\" && npm install --ignore-scripts); done"
},
"keywords": [],
"author": "",
"devDependencies": {
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"aws-sdk": "^2.514.0",
"axios": "^0.19.0",
"cookie": "^0.4.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"ncp": "^2.0.0",
"s3-spa-upload": "^1.1.5"
}
}