-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "graphql-export",
"version": "1.2.2",
"description": "Export graphql schema to other formats",
"keywords": [
"graphql-export",
"graphql",
"insomnia",
"export",
"postman"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/oshosanya/graphql-export.git"
},
"author": "Michael Oshosanya",
"license": "MIT",
"dependencies": {
"axios": "0.21.2",
"chalk": "4.1.2",
"clear": "0.1.0",
"figlet": "1.4.0",
"jest": "27.0.6",
"lodash": "4.17.21",
"pino": "7.10.0",
"yargs": "17.0.1"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/jest": "26.0.15",
"@types/lodash": "4.14.162",
"@types/lodash.find": "4.6.6",
"@types/node": "16.4.1",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"apollo-server": "3.4.1",
"eslint": "7.31.0",
"husky": "7.0.1",
"ts-jest": "27.0.0",
"ts-node": "10.1.0",
"typescript": "4.3.5"
},
"scripts": {
"start": "node dist/index.js",
"prepublish": "tsc",
"build": "tsc",
"test": "jest",
"testWithCoverage": "jest --coverage",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"bin": {
"graphql-export": "dist/index.js"
},
"preferGlobal": true
}