forked from graphql-editor/graphql-zeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "graphql-zeus",
"version": "2.4.7",
"private": false,
"license": "MIT",
"description": "Generate Client Libary for GraphQL Schema",
"homepage": "https://graphqleditor.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"zeus": "lib/CLI/index.js"
},
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"test": "jest",
"examples-generate": "zeus https://project-api.graphqleditor.com/graphql examples/typescript-node-big-schema/src --ts --n -g examples/typescript-node-big-schema/ && zeus https://faker.graphqleditor.com/aexol/olympus/graphql examples/typescript-node/src --ts --n -g examples/typescript-node/zeus.graphql && zeus https://faker.graphqleditor.com/aexol/olympus/graphql examples/javascript-node/src --n",
"run-example-typescript-node": "./run-example.sh examples/typescript-node",
"run-example-typescript-node-big-schema": "./run-example.sh examples/typescript-node-big-schema",
"run-example-javascript-node": "./run-example.sh examples/javascript-node",
"lint": "tsc --noEmit && eslint \"./src/**/*.{ts,js}\" --quiet --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/graphql-zeus.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/graphql-zeus.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/graphql": "^14.0.1",
"@types/jest": "^24.0.9",
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.3.7",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.1.0",
"mocha": "^6.0.2",
"prettier": "^1.19.1",
"ts-jest": "^23.10.5",
"ts-toolbelt": "^4.9.20",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"dependencies": {
"cross-fetch": "^3.0.4",
"graphql": "^14.0.2",
"yargs": "^13.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}