-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "mercurius-cache",
"version": "8.0.0",
"description": "Cache the results of your GraphQL resolvers, for Mercurius",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard | snazzy && tap test/*test.js && tsd",
"redis": "docker run -p 6379:6379 --rm redis:7",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/cache.git"
},
"keywords": [
"mercurius",
"graphql",
"cache"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/cache/issues"
},
"homepage": "https://github.com/mercurius-js/cache#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@sinonjs/fake-timers": "^11.1.0",
"autocannon": "^7.12.0",
"concurrently": "^9.0.0",
"fastify": "^5.0.0",
"graphql": "^16.8.1",
"graphql-type-json": "^0.3.2",
"ioredis": "^5.3.2",
"mercurius": "^16.0.0",
"snazzy": "^9.0.0",
"split2": "^4.2.0",
"standard": "^17.1.0",
"tap": "^16.3.4",
"tsd": "^0.31.0",
"typescript": "^5.2.2",
"wait-on": "^8.0.0",
"ws": "^8.14.2",
"@mercuriusjs/federation": "^5.0.0",
"@mercuriusjs/gateway": "^5.0.0"
},
"tsd": {
"directory": "./test/types"
},
"dependencies": {
"async-cache-dedupe": "^2.0.0",
"fastify-plugin": "^5.0.0"
},
"precommit": "test"
}