-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 846 Bytes
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
{
"name": "lambda-api-benchmarks",
"version": "0.0.0",
"private": true,
"description": "In-process micro-benchmarks comparing lambda-api against other AWS Lambda web frameworks",
"scripts": {
"bench": "node run.js",
"bench:md": "node run.js --md results/RESULTS.md",
"bench:json": "node run.js --json results/raw.json",
"bench:release": "node run.js --md results/RESULTS.md --json results/raw.json --update-readme"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@fastify/aws-lambda": "^6.4.0",
"@middy/core": "^6.4.3",
"@middy/http-error-handler": "^6.4.3",
"@middy/http-json-body-parser": "^6.4.3",
"@middy/http-router": "^6.4.3",
"@vendia/serverless-express": "^4.12.6",
"express": "^4.21.2",
"fastify": "^5.8.5",
"hono": "^4.12.27",
"mitata": "^1.0.34"
}
}