-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
88 lines (88 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "fastify-benchmarks",
"version": "1.0.0",
"description": "Benchmarks for Fastify, a fast and low-overhead web framework.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node benchmark.js",
"compare": "node benchmark.js compare --",
"test": "standard | snazzy",
"standard": "standard | snazzy",
"metrics:run": "node metrics/startup.cjs",
"metrics:summary": "node metrics/process-results.cjs -u"
},
"bin": {
"benchmark": "benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/benchmarks.git"
},
"author": "Çağatay Çalı",
"contributors": [
{
"name": "Stefan Aichholzer",
"email": "[email protected]",
"url": "https://github.com/aichholzer"
}
],
"standard": {
"ignore": [
"lib/packages.js"
]
},
"license": "MIT",
"dependencies": {
"@adonisjs/application": "^8.3.1",
"@adonisjs/encryption": "^6.0.2",
"@adonisjs/events": "^9.0.2",
"@adonisjs/http-server": "^7.2.3",
"@adonisjs/logger": "^6.0.3",
"@hapi/hapi": "^21.1.0",
"@hono/node-server": "^1.3.0",
"@leizm/web": "^2.7.3",
"@tinyhttp/app": "^2.2.1",
"@trpc/server": "^10.7.0",
"0http": "^3.4.2",
"autocannon": "^8.0.0",
"autocannon-compare": "^0.4.0",
"benchmark": "^2.1.4",
"chalk": "^5.2.0",
"cli-table": "^0.3.11",
"commander": "^10.0.0",
"connect": "^3.7.0",
"cors": "^2.8.5",
"dns-prefetch-control": "^0.3.0",
"express": "^5.0.0",
"fastify": "^5.0.0",
"frameguard": "^4.0.0",
"h3": "^1.10.0",
"hide-powered-by": "^1.1.0",
"hono": "^4.0.1",
"hsts": "^2.2.0",
"ienoopen": "^1.1.1",
"inquirer": "^10.1.8",
"koa": "^2.14.1",
"koa-isomorphic-router": "^1.0.1",
"koa-router": "^12.0.0",
"micro": "^10.0.1",
"micro-route": "^2.5.0",
"microrouter": "^3.1.3",
"ora": "^6.1.2",
"polka": "^0.5.2",
"polkadot": "^1.0.0",
"rayo": "^1.4.5",
"restana": "^4.9.7",
"restify": "^11.0.0",
"router": "^1.3.7",
"server-base": "^7.1.32",
"server-base-router": "^7.1.32",
"take-five": "^2.0.0",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
"snazzy": "^9.0.0",
"standard": "^17.0.0"
}
}