-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 853 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 853 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
{
"name": "sift",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"db:push": "turbo -F @sift/db db:push",
"db:studio": "turbo -F @sift/db db:studio",
"db:generate": "turbo -F @sift/db db:generate",
"db:migrate": "turbo -F @sift/db db:migrate",
"check": "biome check --write ."
},
"dependencies": {
"@sift/env": "workspace:*",
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@sift/config": "workspace:*",
"@types/node": "^22.13.14",
"turbo": "^2.6.3",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.28.0"
}