A replica of Keytrace
1{
2 "name": "keytrace",
3 "private": true,
4 "workspaces": [
5 "packages/*",
6 "apps/*"
7 ],
8 "scripts": {
9 "build": "turbo run build",
10 "dev": "turbo run dev --filter=keytrace.dev",
11 "test": "turbo run test",
12 "lint": "turbo run lint",
13 "typecheck": "turbo run typecheck",
14 "type-check": "turbo run typecheck",
15 "format": "oxfmt --write .",
16 "format:check": "oxfmt --check .",
17 "deploy": "./scripts/deploy.sh"
18 },
19 "devDependencies": {
20 "oxfmt": "^0.27.0",
21 "turbo": "^2.8.20",
22 "typescript": "^5.7.0"
23 },
24 "packageManager": "yarn@4.12.0"
25}