-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "backend-lambda",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.600.0",
"@aws-sdk/client-apigatewayv2": "^3.600.0",
"@aws-sdk/client-iam": "^3.600.0",
"@aws-sdk/client-kms": "^3.682.0",
"@aws-sdk/client-secrets-manager": "^3.600.0",
"argparse": "^1.0.10",
"available-typed-arrays": "^1.0.5",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1488.0",
"base64-js": "^1.5.1",
"base64url": "^3.0.1",
"buffer": "^4.9.2",
"call-bind": "^1.0.5",
"commander": "^3.0.2",
"define-data-property": "^1.1.1",
"dotenv": "^16.3.1",
"esprima": "^4.0.1",
"events": "^1.1.1",
"for-each": "^0.3.3",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.2",
"glob-to-regexp": "^0.4.1",
"gopd": "^1.0.1",
"graceful-fs": "^4.2.11",
"has-property-descriptors": "^1.0.1",
"has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
"has-tostringtag": "^1.0.0",
"hasown": "^2.0.0",
"ieee754": "^1.1.13",
"inherits": "^2.0.4",
"is-arguments": "^1.1.1",
"is-callable": "^1.2.7",
"is-generator-function": "^1.0.10",
"is-typed-array": "^1.1.12",
"isarray": "^1.0.0",
"jmespath": "^0.16.0",
"js-yaml": "^3.14.1",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"punycode": "^1.3.2",
"querystring": "^0.2.0",
"sax": "^1.2.1",
"set-function-length": "^1.1.1",
"source-map-support": "^0.5.21",
"sprintf-js": "^1.0.3",
"typescript": "^5.2.2",
"url": "^0.10.3",
"util": "^0.12.5",
"uuid": "^8.0.0",
"watchpack": "^2.4.0",
"which-typed-array": "^1.1.13",
"xml2js": "^0.5.0",
"xmlbuilder": "^11.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"@types/node": "^20.8.10",
"esbuild": ">=0.25.0"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "esbuild *.ts --bundle --minify --sourcemap --platform=node --outdir=dist/",
"postbuild": "cd dist && zip -r index.zip *.js*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}