-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 KB
/
package.json
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
{
"name": "checkitout",
"private": true,
"scripts": {
"build": "turbo run build --env-mode=loose",
"dev": "turbo run dev --filter web --filter api --env-mode=loose",
"dev:all": "turbo run dev --env-mode=loose",
"start": "turbo run start",
"start:api": "turbo run start:api",
"check": "turbo run check",
"check:fix": "turbo run check:fix",
"db:reset": "bun ./packages/db/src/utils/reset.ts",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:generate": "bun drizzle-kit generate",
"db:drop": "drizzle-kit drop",
"db:up": "drizzle-kit up",
"db:check": "drizzle-kit check",
"db:migrate": "bun run ./packages/db/src/migration/index.ts",
"test": "turbo run test",
"type": "turbo run type",
"ci": "turbo run ci --cache-dir=.turbo",
"ci:local": "turbo run ci:local --cache-dir=.turbo",
"sherif": "bunx sherif",
"sherif:fix": "bunx sherif --fix"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"drizzle-kit": "^0.22.7",
"lefthook": "^1.6.10",
"turbo": "^2.1.1",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"workspaces": ["packages/*", "apps/*"]
}