-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.42 KB
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
{
"name": "ts-graphql-client",
"version": "1.1.7",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"description": "Typed client GraphQL using Apollo",
"author": "RawZ06",
"repository": "RawZ06/ts-graphql-client",
"keywords": [
"graphql",
"client",
"typescript",
"typed",
"apollo",
"query",
"mutation",
"graphql-client",
"client-ts",
"ts"
],
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"deploy": "tsc && npm publish",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"codegen": "graphql-codegen"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"README.md"
],
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.2.4",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"apollo-boost": "^0.4.9",
"graphql": "^15.6.1"
},
"jest": {
"testMatch": [
"**/?(*.)+(spec).ts"
],
"preset": "ts-jest",
"testEnvironment": "node"
}
}