aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 37c3f0569435d6875149804b52ad6b74e623d52a (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
42
43
{
  "$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",
    "format:fix": "turbo --no-daemon format:fix --continue",
    "lint": "turbo --no-daemon lint --continue",
    "lint:fix": "turbo --no-daemon lint:fix --continue",
    "typecheck": "turbo --no-daemon typecheck",
    "preflight": "turbo run --no-daemon typecheck lint format",
    "preflight:fix": "turbo run --no-daemon typecheck lint:fix format:fix"
  },
  "dependencies": {
    "husky": "^9.0.11"
  },
  "devDependencies": {
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@types/node": "^22",
    "oxlint": "^1.29.0",
    "prettier": "^3.4.2",
    "sherif": "^1.6.1",
    "turbo": "^2.5.5"
  },
  "prettier": "@karakeep/prettier-config",
  "packageManager": "pnpm@9.15.9",
  "pnpm": {
    "patchedDependencies": {
      "xcode@3.0.1": "patches/xcode@3.0.1.patch"
    }
  }
}