forked from benawad/node-graphql-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
{
"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",
"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.0.3",
"@graphql-tools/schema": "^7.1.2",
"apollo-opentracing": "^2.1.0",
"apollo-server-express": "^2.19.2",
"apollo-server-fastify": "^3.0.0-alpha.3",
"apollo-server-koa": "^2.19.2",
"autocannon": "^7.0.3",
"autocannon-compare": "^0.4.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.4",
"commander": "^7.0.0",
"dd-trace": "^0.30.5",
"express": "^4.17.1",
"express-gql": "^0.0.5",
"express-graphql": "^0.12.0",
"faker": "^5.2.0",
"fast-json-stringify": "^2.4.1",
"fastify": "^3.11.0",
"graphql": "15.5.0",
"graphql-api-koa": "^6.0.0",
"graphql-compose": "^7.24.4",
"graphql-jit": "^0.5.0",
"graphql-upload": "^11.0.0",
"graphql-yoga": "^1.18.3",
"inquirer": "^7.3.3",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"md5": "^2.3.0",
"mercurius": "^6.11.0",
"ora": "^5.3.0",
"reflect-metadata": "^0.1.13",
"turbo-json-parse": "^2.3.0",
"type-graphql": "^1.1.1",
"uWebSockets.js": "uNetworking/uWebSockets.js#v18.14.0"
},
"devDependencies": {
"@types/autocannon": "^4.1.0",
"@types/cli-table": "^0.3.0",
"@types/connect": "^3.4.34",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/faker": "^5.1.6",
"@types/hapi__hapi": "^20.0.5",
"@types/inquirer": "^7.3.1",
"@types/koa": "^2.11.7",
"@types/md5": "^2.2.1",
"@types/micro": "^7.3.3",
"@types/restify": "^8.4.2",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"typescript": "^4.1.3"
}
}