-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1022 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": "treasurykit",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"check": "oxlint",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"deploy:vercel": "turbo -F web deploy:vercel",
"deploy:cf": "turbo -F web deploy:cf",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"db:push": "turbo -F @treasurykit/db db:push",
"db:studio": "turbo -F @treasurykit/db db:studio",
"db:generate": "turbo -F @treasurykit/db db:generate",
"db:migrate": "turbo -F @treasurykit/db db:migrate",
"db:local": "turbo -F @treasurykit/db db:local"
},
"dependencies": {
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"turbo": "^2.6.3",
"@biomejs/biome": "^2.2.0",
"oxlint": "^1.32.0",
"typescript": "^5",
"@types/node": "^22.13.11",
"@cloudflare/workers-types": "^4.20251213.0"
},
"packageManager": "pnpm@10.23.0"
}