-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "@graphprotocol/query-examples-nextjs-app-router",
"description": "Demos how to query the Graph Network Arbitrum Subgraph published to The Graph Network using an API Key obtained on The Graph Studio in a NextJS application using the nextjs app router",
"repository": {
"url": "https://github.com/graphprotocol/query-examples",
"directory": "/examples/nextjs-app-router"
},
"version": "0.1.0",
"private": true,
"scripts": {
"codegen.gql": "graphql-codegen --config ./graphql-codegen.ts && bun prettier --write \"generated/**/*\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.28.9",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"zod": "^3.22.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"jiti": "^1.21.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}