-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "graphql-codegen-apollo-next-ssr",
"version": "1.7.4",
"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/correttojs/graphql-codegen-apollo-next-ssr"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.3.1",
"@graphql-codegen/visitor-plugin-common": "^2.9.1",
"auto-bind": "~4.0.0"
},
"peerDependencies": {
"graphql": "<17.0.0"
},
"main": "build/src/index.js",
"devDependencies": {
"@graphql-codegen/cli": "2.11.7",
"@graphql-codegen/fragment-matcher": "3.3.1",
"@graphql-codegen/import-types-preset": "2.2.3",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/testing": "1.17.7",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@types/jest": "29.5.6",
"@types/node": "18.18.6",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"graphql": "16.8.1",
"graphql-codegen": "0.4.0",
"jest": "29.7.0",
"standard-version": "9.5.0",
"ts-jest": "28.0.8",
"typescript": "4.9.5"
},
"author": "Fabio Benedetti",
"keywords": [
"graphql",
"codegen",
"apollo-client",
"nextjs",
"grapgql-codegen"
]
}