forked from NerdWalletOSS/apollo-cache-policies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "apollo-invalidation-policies",
"version": "1.0.0-beta12",
"description": "An extension to the InMemoryCache from Apollo for type-based invalidation policies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"build": "tsc --build src",
"ts-jest": "ts-jest",
"format": "prettier --write src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NerdWalletOSS/apollo-invalidation-policies.git"
},
"keywords": [
"apollo"
],
"author": "Dan Reynolds",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NerdWalletOSS/apollo-invalidation-policies/issues"
},
"homepage": "https://github.com/NerdWalletOSS/apollo-invalidation-policies#readme",
"peerDependencies": {
"@apollo/client": "^3.3.0"
},
"dependencies": {
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.149",
"@types/uuid": "^7.0.2",
"graphql": "^15.0.0",
"lodash": "^4.17.15",
"typescript": "^3.8.3",
"uuid": "^7.0.3"
},
"devDependencies": {
"@apollo/client": "^3.3.0",
"@types/jest": "^25.1.5",
"jest": "^25.2.6",
"jest-extended": "^0.11.5",
"prettier": "2.0.5",
"react": "^16.13.1",
"subscriptions-transport-ws": "^0.9.17",
"ts-jest": "^25.4.0"
}
}