-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 967 Bytes
/
package.json
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": "tally-api-quickstart",
"private": true,
"version": "0.0.0",
"scripts": {
"gen": "run-p gen:*",
"gen:types": "npx graphql-codegen --config codegen.js",
"gen:hooks": "esbuild autogen/schema.ts --format=esm --outfile=src/CodegenQuery/hooks.js",
"dev": "run-p dev:*",
"dev:types": "npm run gen:types -- --watch",
"dev:hooks": "npm run gen:hooks -- --watch",
"dev:vite": "vite"
},
"dependencies": {
"@tanstack/react-query": "^4.24.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"@graphql-codegen/cli": "^2.16.5",
"@graphql-codegen/typescript-operations": "^2.5.13",
"@graphql-codegen/typescript-react-query": "^4.1.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"esbuild": "^0.17.5",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"vite": "^4.0.0"
}
}