-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
{
"name": "slash-kit",
"version": "1.0.0",
"description": "Full-stack TypeScript monorepo starter with shared types",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.14.0",
"scripts": {
"dev": "pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"type-check": "pnpm -r run type-check",
"lint": "pnpm -r run lint",
"format": "pnpm -r run format",
"clean": "pnpm -r run clean",
"postinstall": "pnpm --filter './packages/**' build",
"db:generate": "pnpm --filter '@slash-kit/db' db:generate",
"db:migrate": "pnpm --filter '@slash-kit/db' db:migrate",
"db:push": "pnpm --filter '@slash-kit/db' db:push",
"db:pull": "pnpm --filter '@slash-kit/db' db:pull",
"db:check": "pnpm --filter '@slash-kit/db' db:check",
"db:up": "pnpm --filter '@slash-kit/db' db:up",
"db:studio": "pnpm --filter '@slash-kit/db' db:studio"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^20.11.17",
"lefthook": "^1.12.2"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.48.4",
"zod": "catalog:"
},
"peerDependencies": {
"typescript": "catalog:"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}