-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "@xometry/graphql-code-generator-subset-plugin",
"version": "0.4.0",
"description": "A plugin for graphql-code-generator that will take a full schema and a set of operations, and produce a subset schema.",
"main": "dist/src/plugin.js",
"repository": "https://github.com/xometry/graphql-code-generator-subset-plugin",
"author": "Benjamin Smedberg <bsmedberg@xometry.com>",
"license": "MIT",
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^1.18"
},
"scripts": {
"build": "tsc -p .",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"generate": "graphql-code-generator",
"shell": "bash -i",
"jest": "jest dist/test",
"test": "yarn build && yarn jest dist/test"
},
"devDependencies": {
"graphql": "^15.5",
"@graphql-codegen/cli": "^1.19",
"@graphql-codegen/introspection": "^1.18.1",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}