-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 946 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
{
"name": "fxmanager",
"version": "0.4.0",
"private": true,
"packageManager": "bun@1.3.2",
"scripts": {
"build": "NODE_ENV=production turbo build && bun ./scripts/build.ts",
"build:force": "NODE_ENV=production turbo build --force && bun ./scripts/build.ts",
"dev": "NODE_ENV=development turbo dev",
"lint": "turbo lint",
"format": "turbo format && biome format --write ./scripts/*.ts",
"typecheck": "turbo typecheck",
"test": "bun ./scripts/test.ts",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit generate && bun ./scripts/migrate.ts && bun biome format --write ./packages/database"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.11",
"better-sqlite3": "^13.0.1",
"drizzle-kit": "^0.31.0",
"turbo": "^2.8.20",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}