-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 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
{
"name": "codegraph",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @codegraph/web",
"dev": "npm run dev --workspace @codegraph/web",
"start": "npm run start --workspace @codegraph/web",
"test": "vitest run",
"typecheck": "npm run typecheck --workspaces --if-present && tsc --noEmit -p scripts/tsconfig.json",
"lint": "npm run lint --workspaces --if-present",
"depcruise": "depcruise . --config .dependency-cruiser.cjs --ignore-known",
"depcruise:all": "depcruise . --config .dependency-cruiser.cjs --no-ignore-known",
"boundaries": "python3 scripts/check_boundaries.py",
"dev:worker": "npm run start --workspace @codegraph/worker",
"docker:verify": "bash scripts/verify-docker.sh",
"docker:paths": "bash scripts/verify-docker.sh --paths",
"bench": "tsx scripts/bench.mts",
"selfindex": "tsx scripts/selfindex.mts"
},
"devDependencies": {
"dependency-cruiser": "^17.0.1",
"typescript": "^5",
"vitest": "^3.2.4"
},
"overrides": {
"dompurify": "^3.4.11"
}
}