-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 888 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 888 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
{
"name": "confer",
"private": true,
"version": "0.2.0",
"workspaces": ["packages/*"],
"scripts": {
"dev": "bun run --filter '*' dev",
"build": "bun run --filter '*' build",
"test": "bun run --filter '*' test",
"test:stack:up": "docker compose -p confer-test -f docker-compose.test.yml up -d --wait",
"test:stack:down": "docker compose -p confer-test -f docker-compose.test.yml down -v",
"test:setup": "bun run test:stack:up && bun run --filter @confer/gateway test:db:setup",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"db:generate": "bun run --filter @confer/gateway db:generate",
"db:migrate": "bun run --filter @confer/gateway db:migrate"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"typescript": "^5.7.0",
"zod": "^3.24.0"
}
}