-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.22 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
{
"name": "tracegraph",
"version": "0.1.0",
"private": true,
"description": "TraceGraph — Understand your codebase through relationships.",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "concurrently -k -n api,web -c blue,green \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "npm run start:dev --workspace @tracegraph/api",
"dev:web": "npm run dev --workspace @tracegraph/web",
"build": "npm run build --workspace @tracegraph/api && npm run build --workspace @tracegraph/web",
"build:api": "npm run build --workspace @tracegraph/api",
"build:web": "npm run build --workspace @tracegraph/web",
"lint": "npm run lint --workspace @tracegraph/api && npm run lint --workspace @tracegraph/web",
"typecheck": "npm run typecheck --workspace @tracegraph/api && npm run typecheck --workspace @tracegraph/web && npm run typecheck --workspace @tracegraph/shared",
"test": "npm run test --workspace @tracegraph/api",
"db:check": "npm run db:check --workspace @tracegraph/api",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"concurrently": "^10.0.4",
"prettier": "^3.9.6"
}
}