-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 843 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
{
"name": "appmafia-ai",
"devDependencies": {
"turbo": "^2.5.4",
"@biomejs/biome": "2.2.2",
"ultracite": "5.3.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
},
"packageManager": "bun@1.2.15",
"private": true,
"scripts": {
"check": "biome check --write .",
"ruler:apply": "bunx @intellectronica/ruler@latest apply --local-only",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F @appmafia-ai/backend dev",
"dev:setup": "turbo -F @appmafia-ai/backend dev:setup"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
]
}