forked from benawad/node-graphql-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
{
"name": "fastify-benchmarks",
"version": "1.0.0",
"description": "Benchmarks for Fastify, a fast and low-overhead web framework.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node benchmark.js && node benchmark.js compare -t",
"postinstall": "cd other-benchmarks/bun-gql && bun install",
"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",
"eslint": "eslint . --ext .js --fix"
},
"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": {
"@benzene/http": "^0.4.2",
"@faker-js/faker": "^8.0.2",
"@graphql-tools/schema": "^10.0.0",
"apollo-opentracing": "^3.0.45",
"apollo-server-express": "^2.19.2",
"apollo-server-fastify": "^3.0.0-alpha.3",
"apollo-server-koa": "^2.19.2",
"autocannon": "^7.11.0",
"autocannon-compare": "^0.4.0",
"body-parser": "^1.20.2",
"chalk": "^4",
"cli-table": "^0.3.11",
"commander": "^11.0.0",
"dd-trace": "^4.8.1",
"express": "^4.18.2",
"express-gql": "^0.0.11",
"express-graphql": "^0.12.0",
"faker": "^6.6.6",
"fast-json-stringify": "^5.7.0",
"fastify": "^4.20.0",
"graphql": "16.7.1",
"graphql-api-koa": "^9.1.3",
"graphql-compose": "^9.0.10",
"graphql-jit": "^0.8.4",
"graphql-upload": "^16.0.2",
"graphql-yoga": "^4.0.3",
"inquirer": "^8",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"md5": "^2.3.0",
"mercurius": "^13.1.0",
"ora": "^5",
"reflect-metadata": "^0.1.13",
"turbo-json-parse": "^2.3.0",
"type-graphql": "^1.1.1",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.31.0"
},
"devDependencies": {
"@types/autocannon": "^7.9.1",
"@types/cli-table": "^0.3.1",
"@types/connect": "^3.4.35",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/faker": "^6.6.8",
"@types/hapi__hapi": "^20.0.13",
"@types/inquirer": "^9.0.3",
"@types/koa": "^2.13.6",
"@types/md5": "^2.3.2",
"@types/micro": "^7.3.7",
"@types/restify": "^8.5.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"typescript": "^5.1.6"
},
"resolutions": {
"graphql": "16.7.1"
},
"engines": {
"node": ">=20.0.0"
}
}