forked from correttojs/graphql-codegen-apollo-next-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "@feki.de/graphql-codegen-apollo-next-ssr",
"version": "1.8.0",
"description": "GraphQL Code Generator plugin for generating a functions to read and write from the apollo cache",
"license": "MIT",
"scripts": {
"test": "jest",
"prepublish": "tsc",
"build": "tsc",
"codegen": "graphql-codegen --config codegen.yml",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/fekide/graphql-codegen-apollo-next-ssr"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.3",
"@graphql-codegen/visitor-plugin-common": "^5.1.0",
"auto-bind": "~4.0.0"
},
"peerDependencies": {
"graphql": "<17.0.0"
},
"main": "build/src/index.js",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/testing": "^3.0.3",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.18.6",
"@apollo/client": "^3.10.1",
"graphql": "^16.8.1",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"author": {
"name": "Felix Haase",
"email": "felix.haase@feki.de"
},
"contributors": [
"Fabio Benedetti"
],
"keywords": [
"graphql",
"codegen",
"apollo-client",
"nextjs",
"grapgql-codegen"
]
}