-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "apollo-server-integration-testing-fastify",
"version": "3.0.0-alpha.0",
"description": "Test helper for writing apollo-server integration tests using Fastify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/marcoreni/apollo-server-integration-testing-fastify.git",
"author": "Marco Reni <reni.marco@gmail.com>",
"keywords": [
"GraphQL",
"Apollo",
"Server",
"Javascript",
"Testing",
"Integration Testing",
"Fastify"
],
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist/",
"compile": "tsc",
"prepublish": "pnpm clean && pnpm compile",
"dev": "tsc --watch",
"release": "release-it --only-version"
},
"devDependencies": {
"@apollo/server": "^4.4.0",
"@as-integrations/fastify": "^1.3.0",
"fastify": "^4.13.0",
"graphql": "^16.6.0",
"release-it": "^15.6.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@apollo/server": ">= 4, < 5",
"@as-integrations/fastify": "1.*",
"fastify": ">= 4, <5",
"graphql": "^16.6.0"
},
"files": [
"dist"
]
}