-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 976 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
{
"name": "my-commit",
"private": true,
"packageManager": "pnpm@9.0.0",
"scripts": {
"dev": "turbo run dev",
"dev:web": "pnpm --filter my-commit-client dev",
"build": "turbo run build",
"build:web": "pnpm --filter my-commit-client build",
"dev:api": "pnpm --filter my-commit-api dev",
"build:api": "pnpm --filter my-commit-api build",
"test": "turbo run test",
"test:web": "pnpm --filter my-commit-client test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"fix:backup-json": "node scripts/fix-contaminated-backup.mjs",
"selfhost:up": "pnpm db:migrate && docker compose up -d --build",
"selfhost:down": "docker compose down",
"selfhost:logs": "docker compose logs -f",
"db:migrate": "pnpm --filter my-commit-api db:migrate"
},
"devDependencies": {
"tsx": "^4.7.1",
"turbo": "^1.10.0"
},
"dependencies": {
"eslint-plugin-react-hooks": "7.1.0-canary-d6cae440-20260106"
}
}