-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
{
"name": "graphweave",
"private": true,
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently --names canvas,exec --prefix-colors blue,green \"pnpm --filter @graphweave/canvas dev\" \"docker compose -f docker-compose.dev.yml up\"",
"dev:exec": "docker compose -f docker-compose.dev.yml up execution",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"check": "biome check .",
"verify": "concurrently --names ts,py --prefix-colors blue,green \"pnpm verify:ts\" \"pnpm verify:py\"",
"verify:ts": "turbo run typecheck && biome check .",
"verify:py": "cd packages/execution && uv run ruff check app/ tests/ && uv run ruff format --check app/ tests/ && uv run pytest tests/unit/",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"turbo": "^2.4.4",
"typescript": "~5.7.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"biome check --write --no-errors-on-unmatched"
],
"packages/execution/**/*.py": [
"uv run --directory packages/execution ruff check --fix",
"uv run --directory packages/execution ruff format"
]
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
}
}