-
-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathpackage.json.hbs
More file actions
37 lines (37 loc) · 829 Bytes
/
Copy pathpackage.json.hbs
File metadata and controls
37 lines (37 loc) · 829 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
28
29
30
31
32
33
34
35
36
37
{
"name": "web",
"type": "module",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">= 22"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"astro": "^5.2.4",
"@tailwindcss/vite": "^4.1.13",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"zod": "^4.1.5"{{#if (eq api "orpc")}},
"@astrojs/react": "^4.1.3",
"@types/react": "^19.0.18",
"@types/react-dom": "^19.0.18",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@orpc/tanstack-query": "^1.9.0",
"@orpc/client": "^1.9.0",
"@tanstack/react-query": "^5.85.5"{{/if}}
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
{{#if (eq api "orpc")}}
"@tanstack/react-query-devtools": "^5.85.5"{{/if}}
}
}