forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 660 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 660 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
{
"name": "example-apollo-client-swc-plugin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.10",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@graphql-codegen/client-preset-swc-plugin": "0.2.0",
"@graphql-codegen/cli": "^6.1.2",
"@vitejs/plugin-react-swc": "^3.3.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"typescript": "5.5.4",
"vite": "^6.4.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "node scripts/test.js",
"test:end2end": "exit 0",
"codegen": "graphql-codegen --config codegen.ts"
}
}