-
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) · 1013 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1013 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": "domus",
"version": "0.8.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome lint .",
"format": "biome check . --write --unsafe",
"check": "biome check . --write",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"coverage": "turbo run coverage",
"e2e": "turbo run e2e",
"e2e:ui": "turbo run e2e:ui",
"prepare": "husky",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"sync:issues": "python3 scripts/github/sync-issues.py"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"turbo": "^2.9.5",
"typescript": "6.0.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "24.x",
"pnpm": ">=10"
}
}