-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 796 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
{
"name": "fit-foyo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:generate": "turbo run db:generate",
"db:migrate": "pnpm --filter @fitfoyo/database db:migrate",
"db:studio": "pnpm --filter @fitfoyo/database db:studio",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.7.4",
"turbo": "^2.9.12",
"typescript": "5.9.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}