-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 709 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 709 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
{
"name": "example-apollo-client-swc-plugin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.6.9",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@graphql-codegen/client-preset-swc-plugin": "0.1.1",
"@graphql-codegen/client-preset": "^3.0.0",
"@graphql-codegen/cli": "^3.3.0",
"@vitejs/plugin-react-swc": "^3.2.0",
"@types/react": "18.0.32",
"@types/react-dom": "18.0.11",
"typescript": "5.0.3",
"vite": "^4.1.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "node scripts/test.js",
"test:end2end": "exit 0",
"codegen": "graphql-codegen --config codegen.ts"
}
}