-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "test-graphclient",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build.client": "graphclient build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"graphql": "^16.9.0",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@graphprotocol/client-add-source-name": "^1.0.20",
"@graphprotocol/client-cli": "^2.2.22",
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-mesh/cache-localforage": "^0.93.1",
"@graphql-mesh/cross-helpers": "^0.3.4",
"@graphql-mesh/graphql": "^1.0.0",
"@graphql-mesh/http": "^1.0.0",
"@graphql-mesh/merger-stitching": "^1.0.0",
"@graphql-mesh/runtime": "^1.0.0",
"@graphql-mesh/store": "^1.0.0",
"@graphql-mesh/transform-prefix": "^1.0.0",
"@graphql-mesh/types": "^1.0.0",
"@graphql-mesh/utils": "^1.0.0",
"@graphql-tools/utils": "^9.2.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-plugin-testing-library": "5.11.1",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"graphql": {
"schema": ".graphclient/schema.graphql",
"documents": "src/**/*.{graphql,ts,tsx}"
}
}