forked from stefanoruth/graphql-codegen-graphql-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "@alagoni97/graphql-codegen-graphql-hooks",
"version": "1.4.1",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/ALagoni97/graphql-codegen-graphql-hooks.git",
"author": "Stefano Ruth <stefano6262@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc",
"example": "cd example && yarn codegen"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.3.1",
"@graphql-codegen/visitor-plugin-common": "^2.5.0"
},
"devDependencies": {
"graphql": "^16.0.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"prettier": {
"semi": false,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always",
"jsxBracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"printWidth": 120
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}