-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "my-portfolio",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"supabase"
],
"scripts": {
"build": "turbo run build",
"start": "turbo run start --filter=@repo/gateway",
"start:gateway": "turbo run db:migrate --filter=@repo/database && turbo run start --filter=@repo/gateway",
"dev": "env-cmd -f ./packages/environment/.env turbo run dev",
"db:generate": "env-cmd -f ./packages/environment/.env turbo run db:generate",
"db:migrate": "env-cmd -f ./packages/environment/.env turbo run db:migrate",
"lint": "turbo run lint",
"format": "biome format --write .",
"check": "biome check --write .",
"check-types": "turbo run check-types",
"gen": "turbo gen",
"gen:module": "turbo gen module"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@turbo/gen": "^2.6.0",
"turbo": "^2.6.0",
"typescript": "5.9.2"
},
"packageManager": "bun@1.3.1",
"engines": {
"node": ">=18"
},
"dependencies": {
"env-cmd": "^11.0.0"
}
}