forked from ridafkih/keeper.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 768 Bytes
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
{
"name": "keeper.sh",
"devDependencies": {
"knip": "5.80.0",
"oxlint": "^1.55.0",
"rimraf": "^6.1.3",
"turbo": "^2.9.0"
},
"license": "AGPL-3.0-only",
"overrides": {
"arktype": "^2.2.0"
},
"packageManager": "bun@1.3.11",
"private": true,
"scripts": {
"clean": "rimraf --glob **/{.turbo,node_modules,.next/}/",
"dev": "turbo run dev dev:root",
"dev:root": "docker compose up --force-recreate",
"types": "turbo run types --parallel",
"build": "turbo run build",
"start": "turbo run start",
"test": "turbo run test",
"lint": "turbo run lint",
"unused": "knip"
},
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"applications/*",
"services/*"
]
}
}