summaryrefslogtreecommitdiffhomepage
path: root/package.json
blob: 6c15f29e6f008009428f3d03f7432617651c8282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"
	}
}