-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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": "gatsby-plugin-emit-graphql-types",
"version": "0.1.0",
"dependencies": {
"babel-plugin-relay": "^2.0.0",
"graphql-compiler": "^1.7.0",
"minilog": "^3.1.0",
"relay": "^0.8.0-1",
"relay-compiler-language-typescript": "^2.0.0",
"typescript": "^3.3.1",
"write": "^1.0.3"
},
"devDependencies": {
"prettier": "^1.16.3"
},
"prettier": {
"bracketSpacing": true,
"proseWrap": "always",
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
},
"main": "index.js",
"description": "A Gatsby plugin that emits GraphQL TypeScript types",
"keywords": [
"gatsby",
"gatsby-plugin",
"graphql",
"types",
"typescript",
"relay",
"relay-compiler-language-typescript"
],
"license": "MIT",
"authors": [
"Christopher Pappas <[email protected]>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/damassi/gatsby-plugin-emit-graphql-types"
},
"bugs": {
"url": "https://github.com/damassi/gatsby-plugin-emit-graphql-types/issues"
}
}