forked from apollographql/reason-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
52
53
54
55
56
57
58
59
{
"name": "@wildcards/reason-apollo",
"version": "0.18.3",
"license": "MIT",
"sideEffects": "false",
"description": "Using Apollo client 2 with Reason",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/reason-apollo"
},
"peerDependencies": {},
"keywords": [
"Reason",
"Apollo",
"React",
"GraphQL"
],
"author": "Grégoire Van der Auwermeulen <[email protected]>",
"devDependencies": {
"bs-platform": "^7.0.1",
"graphql_ppx": "^0.2.8",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"reason-react": "^0.7.0"
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.0",
"apollo-client": "^2.6.3",
"apollo-link": "^1.2.12",
"apollo-link-context": "^1.0.18",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.18",
"apollo-upload-client": "9.1.0",
"apollo-utilities": "^1.3.2",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"react-apollo": "^2.5.8",
"subscriptions-transport-ws": "^0.9.16"
},
"lint-staged": {
"*.re": [
"bsrefmt --in-place",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"lint-staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
}
}