-
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) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 971 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": "shipyard",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.1.1",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "biome format --write .",
"lint:fix": "biome check --fix .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^22.19.17",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.9.7",
"typescript": "^5.7.3"
},
"dependencies": {
"drizzle-kit": "^0.30.1"
},
"simple-git-hooks": {
"pre-commit": "STAGED=$(git diff --cached --name-only --diff-filter=ACM); echo \"$STAGED\" | grep -qE '\\.(js|jsx|ts|tsx|css|json)$' || exit 0; pnpm exec biome check --staged --write; echo \"$STAGED\" | xargs git add"
}
}