-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 1.81 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
{
"name": "mercurius-integration-testing",
"version": "9.0.1",
"private": false,
"keywords": [
"test",
"testing",
"integration",
"fastify",
"graphql",
"gql",
"mercurius",
"typescript"
],
"repository": "https://github.com/mercurius-js/mercurius-integration-testing",
"license": "MIT",
"author": "PabloSz <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc",
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json tap --ts --100"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.2",
"cookie": "^1.0.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@fastify/cookie": "^10.0.0",
"@mercuriusjs/federation": "^4.0.0",
"@mercuriusjs/gateway": "^4.0.1",
"@types/node": "^14.18.37",
"@types/readable-stream": "^2.3.15",
"@types/tap": "^15.0.12",
"@types/ws": "^8.5.12",
"cross-env": "^7.0.3",
"dotenv-cli": "^6.0.0",
"fastify": "^5.0.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"mercurius": "^16.0.0",
"mqemitter": "^5.0.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"tap": "^16.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@mercuriusjs/federation": "^1 || ^2",
"@mercuriusjs/gateway": "^1.2.0",
"fastify": "^4.0.0 || ^5.0.0",
"graphql": "*",
"mercurius": "^12 || ^13 || ^14 || ^15 || ^16"
},
"peerDependenciesMeta": {
"@mercuriusjs/federation": {
"optional": true
},
"@mercuriusjs/gateway": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
}
}