forked from baransu/reason-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 KB
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
{
"name": "reason-apollo",
"version": "0.15.2",
"license": "MIT",
"sideEffects": "false",
"description": "Using Apollo client 2 with Reason",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/reason-apollo"
},
"peerDependencies": {
"bs-platform": "4.0.18",
"graphql_ppx": "^0.2.3"
},
"keywords": [
"Reason",
"Apollo",
"React",
"GraphQL"
],
"author": "Grégoire Van der Auwermeulen <[email protected]>",
"devDependencies": {
"bs-platform": "4.0.18",
"graphql_ppx": "^0.2.8",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"reason-react": "^0.5.3"
},
"dependencies": {
"apollo-cache-inmemory": "1.3.11",
"apollo-client": "2.4.7",
"apollo-link": "1.2.4",
"apollo-link-context": "1.0.10",
"apollo-link-error": "1.1.2",
"apollo-link-http": "1.5.7",
"apollo-link-ws": "1.0.8",
"apollo-upload-client": "9.1.0",
"apollo-utilities": "1.0.26",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"react-apollo": "2.3.2",
"subscriptions-transport-ws": "0.9.0"
},
"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"
}
}