forked from codiplace/bun-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.48 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
{
"name": "bun-monorepo-elysia-react-native-expo-nextjs-drizzle",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "concurrently \"cd apps/backend && bun dev\" \"cd apps/mobile && bun ios\" \"cd apps/web && bun --bun run dev\"",
"w": "concurrently \"cd apps/backend && bun dev\" \"cd apps/web && bun --bun run dev\"",
"expo": "concurrently \"cd apps/backend && bun dev\" \"cd apps/mobile && bun expo\"",
"android": "concurrently \"cd apps/backend && bun dev\" \"cd apps/mobile && bun android\" \"cd apps/web && bun --bun run dev\"",
"ios": "concurrently \"cd apps/backend && bun dev\" \"cd apps/mobile && bun ios\"",
"gen": "cd packages/backend-api && bun gen",
"migrate": "cd packages/backend-api && bun migrate",
"seed": "cd packages/backend-api && bun seed",
"typecheck": "bunx --bun tsc",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"concurrently": "^9.0.1"
},
"engines": {
"npm": "Please use Bun",
"yarn": "Please use Bun",
"pnpm": "Please use Bun",
"bun": ">=1.1.31"
},
"version": "0.0.1",
"description": "monorepo using Bun + Elysia.js + Next.js + React Native Expo + Drizzle ORM",
"keywords": ["elysia-js", "react", "next-js", "react-native", "expo", "drizzle", "elysia", "eden", "postgresql"],
"license": "MIT",
"private": true
}