-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
44 lines (44 loc) · 1.36 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cloudfront-authorization-at-edge",
"version": "2.2.1",
"description": "Protect downloads of your content hosted on CloudFront with Cognito authentication using Lambda@Edge",
"main": "index.js",
"scripts": {
"test": "echo \"Sorry, there aren't any tests\"; exit 1",
"webpack": "webpack --progress",
"analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer ./stats.json",
"build": "npm run remove-webpack-output && npm run webpack",
"remove-webpack-output": "find src -type f \\( -name 'bundle.js' -o -name '*.bundle.js' \\) -exec rm {} +"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/aws-lambda": "^8.10.92",
"@types/cookie": "^0.4.1",
"@types/fs-extra": "^9.0.13",
"@types/ncp": "^2.0.8",
"@types/node": "^20.2.5",
"html-loader": "^3.1.0",
"prettier": "^2.5.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@tsconfig/node20": "^20.1.2",
"adm-zip": "^0.5.10",
"aws-jwt-verify": "^2.1.3",
"aws-sdk": "^2.1571.0",
"cookie": "^0.7.0",
"ncp": "^2.0.0",
"s3-spa-upload": "^2.1.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2
}
}