28 lines
874 B
JSON
28 lines
874 B
JSON
{
|
|
"name": "@paratype/monorepo",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"workspaces": ["packages/*"],
|
|
"scripts": {
|
|
"check": "bun run typecheck && bun run lint && bun run test",
|
|
"typecheck": "tsc -b",
|
|
"lint": "eslint .",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
"build": "bun run --filter '*' build",
|
|
"size-limit": "echo 'size-limit: TODO wire after build'",
|
|
"replay-determinism": "bun run scripts/replay-determinism.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.52.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"@vitest/coverage-v8": "^3.0.0",
|
|
"eslint": "^9.0.0",
|
|
"lefthook": "^1.10.0",
|
|
"typescript": "^5.7.0",
|
|
"typescript-eslint": "^8.0.0",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|