-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 953 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 953 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
33
34
{
"name": "example-react-apollo-client-defer",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "vite build",
"codegen": "graphql-codegen --config codegen.ts",
"dev": "vite",
"start": "pnpm start:yoga & serve -s dist",
"start:yoga": "node src/yoga.mjs",
"test": "cypress run",
"test:end2end": "start-server-and-test start http://localhost:3000 test"
},
"dependencies": {
"@apollo/client": "3.14.1",
"@graphql-yoga/plugin-defer-stream": "3.21.0",
"graphql": "16.14.0",
"graphql-yoga": "5.21.0",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@graphql-codegen/cli": "workspace:*",
"@types/node": "24.12.4",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"cypress": "15.15.0",
"serve": "14.2.6",
"start-server-and-test": "3.0.5",
"typescript": "6.0.3",
"vite": "8.0.13"
}
}