-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 905 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 905 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
26
27
28
29
30
31
32
{
"private": true,
"name": "yavio",
"packageManager": "pnpm@10.17.1",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"lint:fix": "biome check --write .",
"migrate:postgres": "pnpm --filter @yavio/db migrate:postgres",
"migrate:clickhouse": "pnpm --filter @yavio/db migrate:clickhouse",
"migrate": "pnpm migrate:postgres && pnpm migrate:clickhouse",
"db:generate": "pnpm --filter @yavio/db db:generate",
"db:studio": "pnpm --filter @yavio/db db:studio"
},
"pnpm": {
"overrides": {
"hono": ">=4.12.2",
"rollup": ">=4.59.0"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@vitest/coverage-v8": "^3.2.4",
"dotenv-cli": "^11.0.0",
"tsup": "^8.3.6",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}