-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 880 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 880 Bytes
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
{
"name": "example-react-nextjs-swr",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codegen": "graphql-codegen --config codegen.ts",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "cypress run",
"test:end2end": "start-server-and-test start http://127.0.0.1:3000 test"
},
"dependencies": {
"@graphql-tools/executor-http": "^3.0.0",
"next": "13.5.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.2.2",
"@graphql-codegen/client-preset-swc-plugin": "0.2.0",
"@graphql-codegen/schema-ast": "5.0.1",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^10.0.0",
"eslint-config-next": "^13.0.0",
"typescript": "5.5.4"
}
}