-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "graphschematojson",
"version": "2.2.2",
"description": "Convert executable graphql schema to JSON.",
"main": "./dist/index.js",
"types": "./dist/*.d.ts",
"files": [
"dist/"
],
"bin": "./dist/cli.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjwtay/graphSchemaToJson.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jjwtay/graphSchemaToJson/issues"
},
"homepage": "https://github.com/jjwtay/graphSchemaToJson#readme",
"dependencies": {
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"ramda": "^0.26.1",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/graphql": "^0.13.3",
"@types/ramda": "^0.26.9",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.25",
"prettier": "^1.17.1"
}
}