-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 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
{
"name": "cozycore",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:bot": "turbo dev --filter=@cozycore/bot",
"dev:dashboard": "turbo dev --filter=@cozycore/dashboard",
"lint:fix": "bun x ultracite fix",
"lint": "bun x ultracite check",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:push": "turbo db:push",
"db:studio": "pnpm --filter @cozycore/db studio",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"ultracite": "6.3.9"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix"
]
}
}