forked from trycompai/crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "crm",
"private": true,
"license": "MIT",
"version": "1.15.3",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:slop": "oxlint",
"lint:dead": "knip --no-progress",
"format": "biome format --write .",
"check-types": "turbo run check-types",
"test": "turbo run test --concurrency=1",
"auth:generate": "turbo run auth:generate",
"db:deploy": "turbo run db:deploy",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"db:reset": "turbo run db:reset",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"db:test": "bun run --filter=@crm/db db:test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@oxlint/plugins": "1.78.0",
"knip": "6.32.2",
"oxlint": "1.78.0",
"turbo": "^2.10.8",
"typescript": "5.9.2"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.3.12",
"devEngines": {
"packageManager": {
"name": "bun",
"version": "1.3.12"
}
},
"workspaces": [
"apps/*",
"packages/*"
]
}