-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 862 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 862 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
{
"name": "hatch",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "./scripts/dev.sh",
"dev:apps": "turbo run dev",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:migrate": "supabase migration up",
"db:status": "supabase status",
"lint": "turbo run lint",
"reset": "rm -rf apps/participant/.next apps/admin/.next",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "^5.95.0",
"@tanstack/react-query-devtools": "^5.95.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/zod-form-adapter": "^0.42.1",
"turbo": "^2"
},
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">=20"
}
}