-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 836 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
{
"name": "repo-doctor",
"private": true,
"version": "0.1.0",
"description": "Repo Doctor turns GitHub repositories into onboarding and risk-analysis assistants.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm:dev --workspace apps/api\" \"npm:dev --workspace apps/web\"",
"build": "npm run build --workspaces",
"typecheck": "npm run typecheck --workspaces",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspace apps/api",
"format": "prettier --write .",
"db:generate": "npm run db:generate --workspace apps/api",
"db:migrate": "npm run db:migrate --workspace apps/api"
},
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.11"
}
}