forked from croffasia/itsaplan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
33
34
35
36
37
38
39
40
41
{
"name": "itsaplan",
"version": "0.15.0",
"license": "AGPL-3.0-only",
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"eslint": "^9.39.0",
"lefthook": "^2.1.10",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"turbo": "^2.10.9",
"typescript": "^6.0.3"
},
"packageManager": "bun@1.4.0",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:coverage": "cd apps/api && bun run test:coverage",
"db:generate": "bun --filter='@repo/db' run db:generate",
"db:migrate": "bun --filter='@repo/db' run db:migrate",
"db:migrate:test": "bun --env-file=.env.test packages/db/src/migrate.ts",
"db:studio": "bun --filter='@repo/db' run db:studio",
"auth:generate": "bun --filter='@repo/auth' run auth:generate",
"prepare": "lefthook install || true"
},
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"@scalar/types": "0.16.2",
"@scalar/themes": "0.16.2"
}
}