forked from NANDAWEN/fastify-apollo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "fastify-graphql",
"version": "4.0.0",
"description": "Apollo server plugin for Fastify",
"main": "out/FastifyGraphQL.js",
"typings": "out/FastifyGraphQL.d.ts",
"engines": {
"npm": "=< ~5.1.0"
},
"scripts": {
"prepare": "./node_modules/typescript/bin/tsc --extendedDiagnostics",
"release": "standard-version",
"test": "./node_modules/mocha/bin/mocha $NODE_DEBUG_OPTION --require ts-node/register ./test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirsavary/fastify-graphql.git"
},
"keywords": [
"fastify",
"apollo",
"graphql"
],
"author": "Jesse Savary",
"contributors": [
{
"name": "Nickolena Coop",
"url": "https://github.com/coopnd/"
}
],
"license": "MIT",
"homepage": "https://github.com/sirsavary/fastify-graphql#readme",
"bugs": {
"url": "https://github.com/sirsavary/fastify-graphql/issues"
},
"dependencies": {
"apollo-server-core": "^1.3.2",
"apollo-server-module-graphiql": "^1.3.2",
"fastify-plugin": "^0.2.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/graphql": "^0.12.4",
"@types/mocha": "^2.2.48",
"@types/sinon": "^4.3.0",
"@types/supertest": "^2.0.4",
"apollo-server-module-operation-store": "^1.3.2",
"chai": "^4.1.2",
"chai-graphql": "^4.0.0",
"fastify": "^1.5.0",
"graphql": "^0.12.3",
"graphql-tools": "^2.21.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"standard-version": "^4.3.0",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"peerDependencies": {
"graphql": "^0.12"
}
}