-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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": "sandchest",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"examples"
],
"scripts": {
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"dev": "turbo run dev",
"docs:generate": "bun run --filter @sandchest/docs generate:api",
"db:up": "bun run scripts/db-up.ts",
"db:down": "docker compose down",
"db:reset": "docker compose down -v && bun run db:up",
"db:generate": "bun run --filter @sandchest/db db:generate",
"db:push": "cd packages/db && bunx drizzle-kit push",
"db:migrate": "bun run --filter @sandchest/db db:migrate",
"db:migrate:run": "bun run --filter @sandchest/db db:migrate:run",
"db:studio": "bun run --filter @sandchest/db db:studio",
"sandchest-admin": "bun run packages/admin-cli/dist/index.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@resvg/resvg-js": "^2.6.2",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"turbo": "^2.5.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"yaml": "^2.8.2"
},
"packageManager": "bun@1.2.0",
"patchedDependencies": {
"drizzle-kit@0.31.9": "patches/drizzle-kit@0.31.9.patch"
}
}