-
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) · 951 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 951 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": "yarn 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.7.10",
"@graphql-yoga/plugin-defer-stream": "^3.0.0",
"graphql": "^16.6.0",
"graphql-yoga": "5.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.2.2",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.0",
"cypress": "15.7.1",
"serve": "14.2.3",
"start-server-and-test": "3.0.0",
"typescript": "5.5.4",
"vite": "^8.0.0"
}
}