diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..6c15f29 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "dispatch", + "private": true, + "workspaces": [ + "packages/*" + ], + "scripts": { + "dev:api": "bun --watch packages/api/src/index.ts", + "dev:frontend": "bun run --cwd packages/frontend dev", + "check": "biome check .", + "check:fix": "biome check --write .", + "test": "vitest run", + "test:watch": "vitest" + }, + "devDependencies": { + "@biomejs/biome": "^2.4.15", + "typescript": "^5.7.0", + "vitest": "^3.0.0" + } +} |
