forked from benawad/node-graphql-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.49 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
{
"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",
"start-bun": "cross-env NODE_ENV=production bun run benchmark.js && bun run benchmark.js compare -t",
"bench": "node benchmark.js",
"compare": "node benchmark.js compare --",
"update-readme": "sed -n '1,32p' README.md > tmp.md && mv tmp.md README.md && node benchmark.js compare -tc >> README.md",
"build": "tsc && mv dist/createTypeGraphQLSchema.js lib/schemas",
"test": "standard | snazzy",
"standard": "standard | snazzy",
"eslint": "eslint . --ext .js --fix",
"metrics:run": "node startup/_startup.js",
"metrics:summary": "node startup/_process-results.js -u",
"metrics": "npm run metrics:run && npm run metrics:summary",
"generate-static-data": "cd lib && node generateStatic.js"
},
"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",
"@benzene/jit": "^0.1.3",
"@faker-js/faker": "^8.0.2",
"@graphql-tools/schema": "^8.3.1",
"apollo-opentracing": "^2.1.64",
"apollo-server-express": "^3.5.0",
"apollo-server-fastify": "^3.5.0",
"apollo-server-koa": "^3.5.0",
"autocannon": "^7.5.0",
"autocannon-compare": "^0.4.0",
"body-parser": "^1.19.0",
"bun-types": "latest",
"chalk": "^4.1.2",
"class-validator": "^0.14.0",
"cli-table": "^0.3.6",
"commander": "^8.3.0",
"dd-trace": "^1.5.1",
"express": "^4.17.1",
"express-gql": "^0.0.8",
"express-graphql": "^0.12.0",
"faker": "^5.5.3",
"fast-json-stringify": "^2.7.12",
"fastify": "^4.19.2",
"fastify-piscina": "^4.0.0",
"graphql": "15.7.2",
"graphql-api-koa": "^6.0.0",
"graphql-compose": "^9.0.4",
"graphql-jit": "0.8.4",
"graphql-upload": "^12.0.0",
"graphql-yoga": "^1.18.3",
"inquirer": "^8.2.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"md5": "^2.3.0",
"mercurius": "^8.9.1",
"micro": "^10.0.1",
"node-fetch": "2",
"ora": "^6.0.1",
"reflect-metadata": "^0.1.13",
"round-robin-algorithm": "spirinvladimir/round-robin",
"sleep": "^6.3.0",
"threads": "^1.7.0",
"turbo-json-parse": "^2.3.0",
"type-graphql": "^1.1.1",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.31.0"
},
"devDependencies": {
"@types/autocannon": "^4.1.1",
"@types/cli-table": "^0.3.0",
"@types/connect": "^3.4.35",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/hapi__hapi": "^20.0.9",
"@types/inquirer": "^8.1.3",
"@types/koa": "^2.13.4",
"@types/md5": "^2.3.1",
"@types/micro": "^7.3.6",
"@types/restify": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"typescript": "^4.4.4"
}
}