-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "graphql-ruby-client",
"version": "1.14.6",
"description": "JavaScript client for graphql-ruby",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/rmosolgo/graphql-ruby",
"author": "Robert Mosolgo",
"license": "LGPL-3.0",
"bin": "./cli.js",
"devDependencies": {
"@apollo/client": ">=3.3.13",
"@rails/actioncable": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/minimist": "^1.2.0",
"@types/node": "^13.7.1",
"@types/pako": "^1.0.1",
"@types/pusher-js": "^4.2.2",
"@types/rails__actioncable": "^6.1.6",
"@types/react": "^17.0.0",
"@types/relay-runtime": "^14.0.0",
"@types/zen-observable": "^0.8.2",
"ably": "1.2.50",
"graphql": ">=15.0.0",
"jest": "^29.0.0",
"nock": "^11.0.0",
"pako": "^2.0.3",
"prettier": "^1.19.1",
"pusher-js": "^7.0.3",
"relay-runtime": "11.0.2",
"ts-jest": "^29.0.0",
"typescript": "5.3.3",
"urql": "^2.2.2"
},
"scripts": {
"test": "tsc && jest",
"prepublishOnly": "tsc"
},
"dependencies": {
"glob": "^10.0.0",
"minimist": "^1.2.0"
},
"peerDependencies": {
"@apollo/client": ">=3.3.6",
"graphql": ">=14.3.1"
},
"prettier": {
"semi": false,
"trailingComma": "none"
},
"engines": {
"node": ">=10"
}
}