forked from 7nohe/openapi-react-query-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
35
36
{
"name": "tanstack-router-app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "run-p dev:mock dev:tanstack",
"dev:mock": "prism mock ../petstore.yaml --dynamic",
"typecheck": "tsc --noEmit",
"dev:tanstack": "vite --port=3001",
"build": "vite build",
"serve": "vite preview",
"start": "vite",
"generate:api": "rimraf ./openapi && node ../../dist/cli.mjs -i ../petstore.yaml --format=biome --lint=biome",
"test:generated": "tsc -p ./tsconfig.json --noEmit"
},
"devDependencies": {
"@stoplight/prism-cli": "^5.5.2",
"@tanstack/router-plugin": "^1.58.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"npm-run-all": "^4.1.5",
"vite": "^5.4.4"
},
"dependencies": {
"@hey-api/client-fetch": "^0.6.0",
"@tanstack/react-query": "^5.59.13",
"@tanstack/react-query-devtools": "^5.32.1",
"@tanstack/react-router": "^1.58.7",
"@tanstack/react-router-with-query": "^1.58.7",
"@tanstack/router-devtools": "^1.58.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}