-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.39 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
56
57
58
59
{
"name": "nest-graphql-endpoint",
"author": "Matt Krick <[email protected]>",
"version": "0.8.1",
"description": "Nest an external GraphQL Endpoint",
"repository": {
"type": "git",
"url": "git+https://github.com/parabolinc/nest-graphql-endpoint.git"
},
"keywords": [
"github",
"GraphQL",
"schema"
],
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"precommit": "lint-staged && tsc",
"prepublish": "tsc"
},
"license": "MIT",
"sideEffects": false,
"main": "lib/nestGraphQLEndpoint.js",
"peerDependencies": {
"graphql": "^16"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.4",
"@graphql-tools/wrap": "^10.0.5",
"@octokit/graphql-schema": "^14.58.0",
"dataloader": "^2.2.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.4.1",
"sucrase": "^3.20.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
}
}