-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "abby",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:prod": "turbo run build:prod",
"build:packages": "turbo run build --filter=./packages/*",
"test:packages": "turbo run test --filter=./packages/*",
"dev": "turbo run dev --filter=./apps/web",
"dev:packages": "turbo run dev --filter=./packages/*",
"dev:docs": "turbo run dev --filter=./apps/docs",
"dev:angular": "turbo run dev --filter=./apps/angular-example",
"dev:all": "turbo run dev --filter=!./apps/docs",
"lint": "biome lint --fix",
"format": "biome format --write",
"db:start": "docker-compose up -d",
"db:migrate": "turbo run db:migrate --filter=./apps/web",
"db:generate": "turbo run db:generate --filter=./apps/web",
"db:stop": "docker-compose down",
"ci:publish": "pnpm publish -r --access public"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.26.0",
"prettier": "latest",
"turbo": "^2.0.4"
},
"engines": {
"node": ">=22.8.0"
},
"packageManager": "[email protected]"
}