aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 36f06d096d0351f3fc12dd79753c31c2593273bf (plain) (blame)
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
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "karakeep",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "build": "turbo --no-daemon build",
    "dev": "turbo --no-daemon dev --parallel",
    "clean": "git clean -xdf node_modules",
    "clean:workspaces": "turbo --no-daemon clean",
    "db:generate": "pnpm --filter @karakeep/db run generate",
    "db:migrate": "pnpm --filter @karakeep/db run migrate",
    "db:studio": "pnpm --filter @karakeep/db studio",
    "workers": "pnpm --filter @karakeep/workers run start",
    "web": "pnpm --filter @karakeep/web run dev",
    "prepare": "husky",
    "format": "turbo --no-daemon format --continue -- --cache-location node_modules/.cache/.prettiercache",
    "format:fix": "turbo --no-daemon format --continue -- --write --cache-location node_modules/.cache/.prettiercache",
    "lint": "turbo --no-daemon lint --continue --",
    "lint:fix": "turbo --no-daemon lint --continue -- --fix",
    "typecheck": "turbo --no-daemon typecheck"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@types/node": "^22",
    "es-errors": "^1.3.0",
    "husky": "^9.0.11",
    "install": "^0.13.0",
    "oxlint": "^1.2.0",
    "prettier": "^3.4.2",
    "sherif": "^1.2.0",
    "turbo": "^2.1.2"
  },
  "prettier": "@karakeep/prettier-config",
  "packageManager": "pnpm@9.15.9",
  "pnpm": {
    "patchedDependencies": {
      "xcode@3.0.1": "patches/xcode@3.0.1.patch"
    }
  }
}