-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.6 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"$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",
"dev:start": "bash start-dev.sh",
"dev:stop": "bash stop-dev.sh",
"dev:infra:up": "bash scripts/dev-infra.sh up",
"dev:infra:status": "bash scripts/dev-infra.sh status",
"dev:infra:down": "bash scripts/dev-infra.sh down",
"assets:marka": "node scripts/generate-marka-assets.mjs",
"test:marka-assets": "node --test scripts/generate-marka-assets.test.mjs",
"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",
"seed:apply": "pnpm --filter @karakeep/seed-snapshot run apply",
"seed:snapshot": "pnpm --filter @karakeep/seed-snapshot run snapshot",
"prod:pull-state": "bash scripts/pull-prod-state.sh",
"workers": "pnpm --filter @karakeep/workers run start",
"web": "pnpm --filter @karakeep/web run dev",
"web:portless": "pnpm --filter @karakeep/web run dev:portless",
"android": "pnpm --filter @karakeep/mobile android",
"ios": "pnpm --filter @karakeep/mobile ios",
"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",
"test": "turbo --no-daemon test",
"typecheck": "turbo --no-daemon typecheck",
"preflight": "turbo run --no-daemon typecheck lint format",
"preflight:fix": "turbo run --no-daemon typecheck lint:fix format:fix",
"knip": "knip",
"doctor": "react-doctor --project @karakeep/web,@karakeep/browser-extension,@karakeep/mobile,@karakeep/landing,@karakeep/shared-react --scope full --no-score --blocking none",
"doctor:staged": "node scripts/run-react-doctor-staged.mjs",
"doctor:ci": "react-doctor --project @karakeep/web,@karakeep/browser-extension,@karakeep/mobile,@karakeep/landing,@karakeep/shared-react --scope full --blocking none --json | node scripts/check-react-doctor-score.mjs 99"
},
"dependencies": {
"husky": "^9.0.11"
},
"devDependencies": {
"@types/node": "^24",
"execa": "9.3.1",
"knip": "^6.15.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"react-doctor": "0.7.8",
"sharp": "^0.33.3",
"sherif": "^1.6.1",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@11.2.1"
}