-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
31 lines (31 loc) · 830 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
{
"name": "example-react-tanstack-react-query",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tanstack/react-query": "4.33.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.1",
"@vitejs/plugin-react": "^3.1.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.10",
"typescript": "5.2.2",
"serve": "14.2.1",
"cypress": "12.17.4",
"start-server-and-test": "2.0.0",
"vite": "^4.1.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "serve -s dist",
"test": "cypress run",
"test:end2end": "start-server-and-test start http://localhost:3000 test",
"codegen": "graphql-codegen --config codegen.ts"
}
}