-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 920 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 920 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
{
"name": "mtnp",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@mtnp/web",
"dev:admin": "turbo run dev --filter=@mtnp/admin",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "turbo run typecheck",
"db:generate": "turbo run db:generate --filter=@mtnp/db",
"db:push": "turbo run db:push --filter=@mtnp/db",
"db:studio": "turbo run db:studio --filter=@mtnp/db"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "^1.3.6",
"turbo": "^2.7.4",
"typescript": "5.9.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.4",
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"valibot": "^1.2.0"
}
}