-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "rescript-apollo-client",
"description": "ReScript bindings for the Apollo Client ecosystem",
"version": "4.0.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",
"format:ci": "rescript format -check -all",
"start": "rescript build -with-deps -w",
"test": "jest"
},
"devDependencies": {
"@apollo/client": "^3.5.0",
"@reasonml-community/graphql-ppx": "1.2.4-1345e061.0",
"@rescript/react": "~0.11.0",
"graphql": "^15.0.0",
"jest": "26.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rescript": "~10.1.2",
"subscriptions-transport-ws": "^0.9.17"
},
"peerDependencies": {
"@apollo/client": "^3.5.0",
"@reasonml-community/graphql-ppx": "^1.0.0",
"@rescript/react": "~0.10.0 || ~0.11.0 || ~0.12.0",
"rescript": "^10.0.0 || ^11.0.0"
},
"peerDependenciesMeta": {
"rescript": {
"optional": true
}
},
"workspaces": [
"EXAMPLES",
"./"
]
}