forked from benawad/node-graphql-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.51 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "fastify-benchmarks",
"version": "1.0.0",
"description": "Benchmarks for Fastify, a fast and low-overhead web framework.",
"main": "index.js",
"scripts": {
"start": "node benchmark.js && node benchmark.js compare -t",
"bench": "node benchmark.js",
"compare": "node benchmark.js compare --",
"update-readme": "sed -n '1,21p' README.md > tmp.md && mv tmp.md README.md && node benchmark.js compare -tc >> README.md",
"build": "tsc && mv dist/schemas/createTypeGraphQLSchema.js lib/schemas",
"test": "standard | snazzy",
"standard": "standard | snazzy"
},
"bin": {
"benchmark": "./benchmark.js"
},
"repository": "https://github.com/fastify/benchmarks.git",
"author": "Çağatay Çalı",
"contributors": [
{
"name": "Stefan Aichholzer",
"email": "[email protected]",
"url": "https://github.com/aichholzer"
}
],
"license": "MIT",
"dependencies": {
"@hapi/hapi": "^18.3.0",
"@leizm/web": "^2.6.0",
"apollo-opentracing": "^1.4.2",
"apollo-server-express": "^2.9.15",
"apollo-server-fastify": "^2.9.15",
"apollo-server-koa": "^2.12.0",
"autocannon": "^4.4.2",
"autocannon-compare": "^0.4.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"class-validator": "^0.12.2",
"cli-table": "^0.3.1",
"commander": "^4.0.1",
"connect": "^3.6.6",
"cors": "^2.8.5",
"dd-trace": "^0.16.3",
"dns-prefetch-control": "^0.3.0",
"egg": "^2.19.0",
"express": "^4.16.4",
"express-gql": "^0.0.2",
"express-graphql": "^0.9.0",
"faker": "^4.1.0",
"fast-json-stringify": "^1.16.0",
"fastify": "^2.11.0",
"fastify-gql": "^2.1.0",
"foxify": "^0.10.20",
"frameguard": "^3.0.0",
"graphql": "15.3.0",
"graphql-api-koa": "^4.1.0",
"graphql-compose": "^7.9.0",
"graphql-jit": "^0.4.2",
"graphql-tools": "^4.0.6",
"graphql-upload": "^9.0.0",
"graphql-yoga": "^1.18.3",
"graphyne-server": "^0.7.1",
"hide-powered-by": "^1.0.0",
"hsts": "^2.1.0",
"http-errors": "^1.7.3",
"ienoopen": "^1.0.0",
"inquirer": "^7.0.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"make-promises-safe": "^5.1.0",
"md5": "^2.2.1",
"micro": "^9.3.3",
"micro-route": "^2.5.0",
"microrouter": "^3.1.3",
"opentracing": "^0.14.4",
"ora": "^4.0.3",
"polka": "^0.5.2",
"polkadot": "^1.0.0",
"rayo": "^1.2.9",
"reflect-metadata": "^0.1.13",
"restify": "^8.0.0",
"router": "^1.3.3",
"server-base": "^14.10.7",
"server-base-router": "^14.10.7",
"spirit": "^0.6.1",
"spirit-router": "^0.5.0",
"take-five": "^2.0.0",
"total.js": "^3.2.4",
"trek-engine": "^1.0.5",
"trek-router": "^1.2.0",
"turbo-json-parse": "^2.3.0",
"type-graphql": "^1.0.0",
"uWebSockets.js": "uNetworking/uWebSockets.js#v16.5.0",
"vapr": "^0.5.5",
"x-xss-protection": "^1.1.0",
"yeps": "^1.1.1",
"yeps-router": "^1.2.0"
},
"devDependencies": {
"@types/autocannon": "^4.1.0",
"@types/cli-table": "^0.3.0",
"@types/connect": "^3.4.33",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.8",
"@types/hapi__hapi": "^18.2.6",
"@types/inquirer": "^6.5.0",
"@types/koa": "^2.11.0",
"@types/koa-router": "^7.0.42",
"@types/md5": "^2.1.33",
"@types/micro": "^7.3.3",
"@types/microrouter": "^3.1.1",
"@types/restify": "^8.4.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1",
"typescript": "^3.7.4"
}
}