forked from graphql-editor/graphql-zeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "graphql-zeus",
"version": "5.1.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": "ttsc --build tsconfig.build.json",
"start": "ttsc --build tsconfig.build.json --watch",
"test": "jest",
"cli": "node ./lib/CLI/index.js",
"examples-generate": "npm run generate-typescript-node",
"generate-typescript-node": "node ./lib/CLI/index.js https://faker.graphqleditor.com/a-team/olympus/graphql examples/typescript-node/src --n -g examples/typescript-node/zeus.graphql --apollo --reactQuery --stuccoSubscriptions --td",
"run-example-typescript-node": "./run-example.sh examples/typescript-node",
"lint": "ttsc && eslint \"./src/**/*.{ts,js}\" --quiet --fix",
"doc:ci": "cd doc && npm i && npm run build",
"doc:watch": "cd doc && npm run start && cd ..",
"produce-lib": "ts-node src/CLI/libBuilder.ts && eslint src/TreeToTS/functions/generated.ts --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",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^13.9.0",
"@types/node-fetch": "^2.3.7",
"@types/yargs": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql-ws": "^5.8.2",
"husky": "^4.2.3",
"jest": "^27.5.1",
"json-schema": "^0.3.0",
"mocha": "^7.1.0",
"prettier": "^2.7.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.1",
"ts-toolbelt": "^6.3.6",
"tslint-config-prettier": "^1.18.0",
"ttypescript": "^1.5.12",
"typescript": "^4.7.3",
"typescript-transform-paths": "^2.0.0"
},
"dependencies": {
"cross-fetch": "^3.0.4",
"graphql": "^16.5.0",
"graphql-js-tree": "^0.1.1",
"yargs": "^16.1.1"
},
"peerDependencies": {
"graphql-ws": ">=5"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}