-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 942 Bytes
/
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
{
"name": "redux-offline-apollo-link",
"version": "1.6.0",
"description": "A Wrapper Function to switch between using apollo client links and redux offline actions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/jkusachi/redux-offline-apollo-link",
"author": "James Kusachi",
"license": "MIT",
"dependencies": {
"apollo-link-http-common": "^0.2.8",
"apollo-utilities": "^1.0.27",
"extract-files": "^5.0.0",
"lodash": "^4.17.15",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
},
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"build": "tsc",
"jsdoc": "jsdoc-md",
"prepublish": "npm run build"
},
"peerDependencies": {
"graphql": "^14",
"graphql-tag": "^2",
"react-apollo": "^2"
},
"devDependencies": {
"graphql": "^14",
"graphql-tag": "^2",
"jsdoc-md": "^1.7.0",
"react-apollo": "^2"
}
}