-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
56 lines (56 loc) · 2.1 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-zeus-repo",
"version": "0.0.1",
"private": true,
"license": "MIT",
"description": "Generate Client Library for GraphQL Schema",
"homepage": "https://github.com/graphql-editor/graphql-zeus",
"readme": "https://github.com/graphql-editor/graphql-zeus#readme",
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/graphql-zeus.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/graphql-zeus.git"
},
"scripts": {
"build": "npm run build -ws --if-present",
"lint": "ttsc && eslint \"./packages/**/*.{ts,js}\" --quiet --fix",
"run-example-typescript-node": "./run-example.sh examples/typescript-node",
"examples-generate": "npm run generate-typescript-node",
"produce-lib": "ts-node libBuilder.ts && eslint packages/graphql-zeus-core/TreeToTS/functions/generated.ts --quiet --fix",
"generate-typescript-node": "node ./packages/graphql-zeus/lib/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",
"cli": "node ./packages/graphql-zeus/lib/index.js",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/graphql": "^14.5.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.2",
"@types/node-fetch": "^2.3.7",
"@types/ws": "^8.5.3",
"@types/yargs": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql-ws": "^5.8.2",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"typescript": "4.8.4",
"typescript-transform-paths": "^3.3.1"
},
"workspaces": [
"./packages/graphql-zeus-jsonschema",
"./packages/graphql-zeus-core",
"./packages/graphql-zeus",
"./examples/typescript-node"
]
}