forked from jeddeloh/rescript-apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "rescript-apollo-client",
"description": "ReScript bindings for the Apollo Client ecosystem",
"version": "3.2.0",
"keywords": [
"Apollo",
"BuckleScript",
"GraphQL",
"ReScript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jeddeloh/rescript-apollo-client"
},
"scripts": {
"build": "rescript build -with-deps",
"clean": "rescript clean",
"start": "rescript build -with-deps -w",
"test": "jest"
},
"devDependencies": {
"@apollo/client": "^3.5.0",
"@reasonml-community/graphql-ppx": "^1.0.0",
"@rescript/react": "~0.11.0",
"rescript": "~10.1.2",
"graphql": "^14.0.0",
"jest": "26.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"subscriptions-transport-ws": "^0.9.17"
},
"peerDependencies": {
"@apollo/client": "^3.5.0",
"@reasonml-community/graphql-ppx": "^1.0.0",
"@rescript/react": "~0.10. || ~0.11.0",
"bs-platform": "^8.2.0 || ^9.0.0",
"rescript": "^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"rescript": {
"optional": true
},
"bs-platform": {
"optional": true
}
}
}