-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 979 Bytes
/
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
{
"name": "@hyperdev-io/graphql-api-client",
"version": "2.6.0",
"description": "A client for the HyperDev GraphQL API",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hyperdev-io/graphql-api-client"
},
"scripts": {
"dev": "nodemon src/index.js",
"build": "npx babel src --out-dir lib --source-maps inline && cp ./src/fragmentTypes.json ./lib"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.3.2",
"apollo-link-ws": "^1.0.4",
"graphql": "^0.11.0",
"graphql-tag": "^2.6.1",
"node-fetch": "^1.7.3",
"subscriptions-transport-ws": "^0.9.12"
},
"author": "HyperDev",
"license": "Apache 2.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2016": "^6.24.1"
}
}