-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (88 loc) · 2.67 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
89
{
"name": "@moveaxlab/graphql-client",
"version": "0.9.0",
"description": "Utilities to build GraphQL clients.",
"homepage": "https://github.com/moveaxlab/graphql-client",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:moveaxlab/graphql-client.git"
},
"author": "Michelle Laurenti <[email protected]>",
"contributors": [
"Furio Dipoppa <[email protected]>"
],
"files": ["lib"],
"license": "MIT",
"private": false,
"scripts": {
"test": "npm-run-all test:*",
"test:types": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint --ext .ts .",
"test:unit": "jest",
"fix:lint": "eslint --ext .ts --fix .",
"build": "tsc -p tsconfig.build.json",
"generate:graphql": "npm-run-all generate:graphql:*",
"generate:graphql:clean": "rm -rf ./tests/example/__generated__ && mkdir -p ./tests/example/__generated__",
"generate:graphql:schema": "graphql-codegen --config codegen.yml",
"generate:graphql:lint": "eslint --fix --ext .ts ./tests/example/__generated__"
},
"dependencies": {
"@apollo/client": "~3.8.6",
"apollo-link-sentry": "^3.0.2",
"apollo-upload-client": "^14.1.0",
"graphql": "^14.0.0",
"graphql-ws": "~5.14.2",
"json-stable-stringify": "^1.0.1",
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@graphql-codegen/add": "^1.13.2",
"@graphql-codegen/cli": "^1.13.2",
"@graphql-codegen/fragment-matcher": "^1.17.4",
"@graphql-codegen/schema-ast": "^1.13.2",
"@graphql-codegen/typescript": "^1.13.2",
"@graphql-codegen/typescript-operations": "^1.13.2",
"@sentry/minimal": "^6.2.0",
"@sentry/types": "^6.2.0",
"@types/jest": "^26.0.24",
"@types/redux-saga-tester": "^1.0.1",
"@types/websocket": "^1.0.0",
"apollo-server": "^2.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.17.1",
"graphql-import": "^1.0.2",
"graphql-import-node": "^0.0.4",
"graphql-tag": "^2.10.3",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-extended": "^1.2.1",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"redux": "^4.0.4",
"redux-saga": "^1.1.3",
"redux-saga-tester": "^1.0.740",
"redux-sigma": "^0.8.0-beta.3",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"websocket": "^1.0.31"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"keywords": [
"graphql",
"query",
"mutation",
"subscription",
"ws"
]
}