-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.9 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
{
"name": "mion-benchmarks",
"version": "1.0.0",
"private": true,
"description": "Benchmarks for mion framework.",
"main": "index.js",
"scripts": {
"start": "node benchmark.js",
"compare": "node benchmark.js compare --",
"compare-t": "node benchmark.js compare -t",
"compare:summary": "node benchmark.js compare -u",
"test": "standard | snazzy",
"standard": "standard | snazzy",
"metrics:run": "node metrics/startup.js",
"metrics:summary": "node metrics/process-results.js -u",
"metrics": "npm run metrics:run && npm run metrics:summary",
"build": "rimraf ./_compiled-apps && tsc --project tsconfig.json",
"print-servers": "node benchmark-compare.js -u -b servers",
"bench-servers": "node benchmark-bench.js y 100 10 40 servers",
"test-bench-servers": "node benchmark-bench.js y 100 10 4 servers",
"servers": "npm run bench-servers && npm run print-servers",
"print-servers-hello": "node benchmark-compare.js -u -b servers-hello",
"bench-servers-hello": "node benchmark-bench.js y 100 10 40 servers-hello",
"servers-hello": "npm run bench-servers-hello && npm run print-servers-hello",
"report": "npm run servers && npm run servers-hello && npm run metrics",
"deepkit-install": "deepkit-type-install",
"mionlink": "npm link @mionkit/router @mionkit/core @mionkit/bun @mionkit/http"
},
"bin": {
"benchmark": "./benchmark.js"
},
"repository": "https://github.com/fastify/benchmarks.git",
"author": "Ma jerez",
"contributors": [
{
"name": "Ma Jerez"
}
],
"license": "MIT",
"dependencies": {
"@deepkit/app": "^1.0.1-alpha.119",
"@deepkit/filesystem": "^1.0.1-alpha.114",
"@deepkit/framework": "^1.0.1-alpha.119",
"@deepkit/http": "^1.0.1-alpha.119",
"@deepkit/logger": "^1.0.1-alpha.119",
"@deepkit/type": "^1.0.1-alpha.119",
"@hapi/hapi": "^21.3.2",
"@hono/node-server": "^1.4.1",
"@trpc/server": "^9.27.2",
"autocannon": "^7.0.1",
"autocannon-compare": "^0.4.0",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"cli-table": "^0.3.1",
"commander": "^9.0.0",
"connect": "^3.6.6",
"cors": "^2.8.5",
"dns-prefetch-control": "^0.3.0",
"egg": "^3.0.0",
"express": "^4.16.4",
"fastify": "4.10",
"frameguard": "^4.0.0",
"hide-powered-by": "^1.0.0",
"hono": "^3.12.6",
"hsts": "^2.1.0",
"ienoopen": "^1.0.0",
"inquirer": "^8.0.0",
"make-promises-safe": "^5.1.0",
"restify": "^11.1.0",
"router": "^1.3.3",
"server-base": "^7.1.23",
"server-base-router": "^7.1.23",
"total.js": "^3.2.4",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
"@deepkit/core": "^1.0.1-alpha.114",
"@deepkit/type-compiler": "^1.0.1-alpha.117",
"@types/node": "^16.11.6",
"pidusage": "^3.0.2",
"puppeteer": "^20.8.0",
"rimraf": "^5.0.1",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"typescript": "5.3.3"
}
}