-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 834 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 834 Bytes
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": "graphql-binding-github",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"schema"
],
"scripts": {
"prepare": "npm run build && cp src/schema.graphql dist/schema.graphql",
"build": "rm -rf dist && graphql codegen && tsc -d",
"test": "echo No tests yet"
},
"dependencies": {
"apollo-link": "1.2.2",
"apollo-link-http": "1.5.4",
"cross-fetch": "2.1.1",
"graphql": "14.5.8",
"graphql-binding": "1.4.0-beta.23",
"graphql-tools": "2.23.1"
},
"devDependencies": {
"graphql-cli": "3.0.14",
"@types/graphql": "14.2.3",
"@types/node": "10.12.24",
"typescript": "3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/graphcool/graphql-binding-github.git"
}
}