-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "with-typescript-graphql",
"version": "0.1.0",
"author": "",
"license": "ISC",
"scripts": {
"codegen": "graphql-let",
"dev": "yarn codegen && next",
"build": "yarn codegen && next build",
"start": "next start"
},
"dependencies": {
"@apollo/react-common": "3.1.4",
"@apollo/react-components": "^3.1.5",
"@apollo/react-hooks": "3.1.5",
"apollo-cache": "^1.3.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "1.2.14",
"apollo-link-http": "1.5.17",
"apollo-link-schema": "1.2.5",
"apollo-server-micro": "^2.14.2",
"apollo-utilities": "^1.3.3",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.15.1",
"@graphql-codegen/plugin-helpers": "^1.15.1",
"@graphql-codegen/typescript": "^1.13.3",
"@graphql-codegen/typescript-operations": "^1.13.3",
"@graphql-codegen/typescript-react-apollo": "^1.13.3",
"@graphql-codegen/typescript-resolvers": "^1.15.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"graphql-let": "0.x",
"typescript": "^3.8.3"
}
}