-
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.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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": "tithe",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.16.1",
"engines": {
"node": "22.x"
},
"scripts": {
"build": "turbo run build",
"prepare": "husky",
"dev": "pnpm check:sqlite && VITE_API_BASE=${VITE_API_BASE:-http://127.0.0.1:8787/v1} turbo run dev --parallel",
"dev:api": "pnpm check:sqlite && pnpm --filter @tithe/api dev",
"dev:cli": "pnpm --filter @tithe/cli dev",
"dev:pwa": "pnpm --filter @tithe/pwa dev",
"start:api": "pnpm check:sqlite && pnpm --filter @tithe/api start",
"start:cli": "pnpm --filter @tithe/cli start",
"start:pwa": "pnpm --filter @tithe/pwa start",
"db:migrate": "pnpm check:sqlite && pnpm --filter @tithe/db migrate",
"check:sqlite": "pnpm --filter @tithe/db check:native",
"repair:sqlite": "node ./scripts/repair-sqlite-native.mjs && pnpm check:sqlite",
"setup:first-time": "node ./scripts/setup-first-time.mjs",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:staged": "lint-staged",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"check": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.10",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"tsx": "^4.19.3",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json}": ["pnpm exec biome check --write --no-errors-on-unmatched"]
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3"]
}
}