30 lines
995 B
JSON
30 lines
995 B
JSON
{
|
|
"name": "dbmole-monorepo",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"workspaces": ["packages/*"],
|
|
"engines": { "node": ">=20" },
|
|
"scripts": {
|
|
"lint": "biome check packages/*/src packages/*/test",
|
|
"lint:fix": "biome check --write packages/*/src packages/*/test",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"build": "npm run build --workspaces --if-present",
|
|
"test": "npm run test:unit",
|
|
"test:unit": "vitest run --project unit",
|
|
"test:int": "vitest run --project integration",
|
|
"test:all": "vitest run",
|
|
"coverage": "npm run coverage --workspaces --if-present"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.16",
|
|
"@types/node": "^22.19.21",
|
|
"@vitest/coverage-v8": "^3.2.6",
|
|
"testcontainers": "^11.14.0",
|
|
"tsup": "^8.5.1",
|
|
"tsx": "^4.22.4",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.6"
|
|
}
|
|
}
|