-
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) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 913 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": "diffdeck-monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit -p packages/path-store/tsconfig.json && tsc --noEmit -p packages/theming/tsconfig.json && tsc --noEmit -p packages/diffs/tsconfig.json && tsc --noEmit -p packages/trees/tsconfig.json && tsc --noEmit -p apps/viewer/tsconfig.json && tsc --noEmit -p apps/viewer/e2e/tsconfig.json",
"lint": "oxlint apps/",
"format": "oxfmt apps/",
"format:check": "oxfmt --check apps/",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:e2e": "cd apps/viewer && bunx playwright test"
},
"devDependencies": {
"@diffdeck/diffs": "workspace:*",
"@diffdeck/trees": "workspace:*",
"@playwright/test": "1.62.1",
"@types/bun": "1.3.14",
"oxfmt": "0.61.0",
"oxlint": "1.76.0",
"oxlint-tsgolint": "7.0.2001",
"typescript": "7.0.2"
}
}