-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "apollo-link-fragment-first",
"version": "1.0.0",
"description": "An Apollo Link to getting queries from fragments",
"peerDependencies": {
"@apollo/client": "^3.4.5"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^35.0.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"main": "build/dist/index.js",
"module": "build/dist/index.js",
"repository": {
"type": "git",
"url": "palshin/apollo-link-fragment-first"
},
"jsnext:main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts' --fix"
},
"keywords": [
"graphql",
"apollo",
"apollo-link",
"@apollo/client",
"fragment"
],
"author": "Eugene Palshin <eo.palshin@gmail.com>",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.4.5",
"graphql": "^15.5.1"
}
}