-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
80 lines (80 loc) · 2.39 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
79
80
{
"name": "apollo-cache-hermes",
"version": "0.9.3",
"description": "A cache implementation for Apollo Client, tuned for performance",
"license": "Apache-2.0",
"repository": "convoyinc/apollo-cache-hermes",
"homepage": "https://github.com/convoyinc/apollo-cache-hermes",
"bugs": "https://github.com/convoyinc/apollo-cache-hermes/issues",
"keywords": [
"apollo",
"apollo-client",
"apollo-cache",
"graphql"
],
"files": [
"**/*.md",
"src/**/**.js",
"src/**/**.d.ts",
"tsconfig.json"
],
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"scripts": {
"clean": "./scripts/clean.sh",
"compile": "./scripts/compile.sh",
"dev": "./scripts/dev.sh",
"fix-style": "./scripts/fix-style.sh",
"release": "./scripts/release.sh",
"test": "./scripts/test.sh",
"test-compile": "./scripts/test-compile.sh",
"test-style": "./scripts/test-style.sh",
"test-unit": "./scripts/test-unit.sh",
"test-unit-coverage": "./scripts/test-unit-coverage.sh",
"test-audit": "node ./node_modules/.bin/audit-ci --config .audit-ci.json --pass-enoaudit"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/deep-freeze-strict": "^1.1.0",
"@types/lodash": "^4.14.102",
"@types/lodash.findindex": "^4.6.3",
"@types/lodash.isequal": "^4.3.3",
"@types/lodash.set": "^4.3.3",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"audit-ci": "^2.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest-diff": "^1.0.2",
"eslint": "^7.6.0",
"eslint-plugin-eslint-comments": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^22.0.0",
"graphql": "16.6.0",
"graphql-tag": "^2.12.6",
"jest": "^26.2.2",
"jest-junit": "^5.0.0",
"lodash": "^4.17.5",
"react": "^16.13.1",
"rimraf": "^2.6.2",
"typescript": "~4.7"
},
"dependencies": {
"@apollo/client": "^3.3.21",
"@wry/equality": "^0.2.0",
"deep-freeze-strict": "^1.0.0",
"lodash.findindex": "^4.0.0",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.0.0",
"make-error": "^1.3.0",
"subscriptions-transport-ws": "^0.9.17",
"ts-invariant": "^0.4.4",
"tslib": "^2.5.0"
},
"peerDependencies": {
"@apollo/client": "^3.3.21"
}
}