-
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) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "8bu.dev",
"private": true,
"type": "module",
"scripts": {
"dev": "bash scripts/dev.sh",
"build": "turbo run build",
"lint": "oxlint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "oxfmt --ignore-path .gitignore --ignore-path .oxfmtignore",
"format:check": "oxfmt --check --ignore-path .gitignore --ignore-path .oxfmtignore",
"db:up": "docker compose -f docker-compose.dev.yml up -d --wait postgres",
"db:down": "docker compose -f docker-compose.dev.yml down",
"db:reset": "docker compose -f docker-compose.dev.yml down -v && pnpm db:up",
"migrate": "tsx --env-file=.env packages/db/src/migrate.ts up",
"seed": "tsx --env-file=.env packages/db/src/scripts/seed.ts seeds/interview.yaml --locale=en",
"deploy": "bash deploy.sh"
},
"devDependencies": {
"@8budev/oxlint-config": "workspace:*",
"oxfmt": "^0.47.0",
"oxlint": "^1.0.0",
"tsx": "^4.19.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=11.0"
},
"packageManager": "pnpm@11.0.0"
}