-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "@giantnodes/graphql-fetch",
"version": "0.0.0",
"description": "A lightweight isomorphic GraphQL client.",
"author": "Jordan Phillips <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]/giantnodes/graphql-fetch.git"
},
"engines": {
"node": ">=14"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"build": "tsup src",
"--- ": "",
"lint:eslint": "eslint src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
"lint:prettier": "pretty-quick 'src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}'",
"lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint"
},
"peerDependencies": {
"graphql": "14 - 16"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"graphql": "^16.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tsup": "^6.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"web-streams-polyfill": "^3.2.1"
}
}