forked from DIodide/TheForum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 832 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 832 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
{
"name": "the-forum",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"format": "biome format --write .",
"check": "biome check --write .",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f postgres",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:push": "turbo db:push",
"db:studio": "turbo db:studio",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"turbo": "^2.4.4"
},
"workspaces": ["apps/*", "backends/*"],
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css}": ["biome check --write --no-errors-on-unmatched"]
},
"packageManager": "bun@1.2.2"
}