-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "graphql-client-benchmarks",
"description": "A benchmarking suite for GraphQL clients, with focus on their cache implementations",
"license": "Apache-2.0",
"version": "1.0.0",
"repository": "convoyinc/graphql-client-benchmarks",
"homepage": "https://github.com/convoyinc/graphql-client-benchmarks",
"bugs": "https://github.com/convoyinc/graphql-client-benchmarks/issues",
"scripts": {
"cli": "node ./src/reporters/cli/entry.js",
"compile": "./scripts/compile.sh",
"compile-ts": "./scripts/compile-ts.sh",
"compile-web": "./scripts/compile-web.sh",
"dev": "./scripts/dev.sh",
"update-pages": "./scripts/update-pages.sh",
"release": "./scripts/release.sh"
},
"bin": {
"graphql-client-benchmarks": "./src/reporters/cli/entry.js"
},
"main": "./src",
"dependencies": {
"@convoy/dapper": "^2.0.104",
"apollo-cache": "^1.1.12",
"apollo-cache-hermes": "^0.8.1",
"apollo-cache-inmemory": "^1.3.9",
"apollo-client": "^2.3.5",
"apollo-link": "^1.2.2",
"apollo-utilities": "^1.0.16",
"browser-process-hrtime": "^0.1.2",
"chroma-js": "^1.3.7",
"fast-random": "^2.0.4",
"fast-stats": "^0.0.3",
"graphql": "^0.13.2",
"graphql-compiler": "^1.6.0",
"graphql-tag": "^2.9.2",
"ink": "^0.5.0",
"le-table": "^6.1.8",
"lodash": "^4.17.10",
"performance-now": "^2.1.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"relay-compiler": "^1.6.0",
"relay-runtime": "^1.6.0",
"require-context": "github:bojidar-bg/require-context",
"shelljs": "^0.8.0",
"source-map-support": "^0.5.6",
"tslib": "~1.9.0",
"typescript": "~2.9.0",
"unexpected": "^10.38.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chalk": "^2.2.0",
"@types/chroma-js": "^1.3.5",
"@types/fast-stats": "^0.0.29",
"@types/lodash": "^4.14.110",
"@types/node": "^8.0.0",
"@types/react": "^16.3.16",
"@types/relay-runtime": "^1.3.3",
"@types/webpack": "^4.4.0",
"@types/webpack-env": "^1.13.6",
"eslint": "^4.19.0",
"eslint-plugin-eslint-comments": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-typescript": "^0.12.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.12.0",
"raw-loader": "^0.5.1",
"ts-loader": "^4.4.1",
"typescript-eslint-parser": "^15.0.0",
"webpack": "^4.12.0",
"webpack-command": "^0.2.1",
"webpack-serve": "^1.0.4",
"webpack-visualizer-plugin": "^0.1.11"
}
}