-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.17 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
{
"name": "@ladesa-ro/api.root",
"version": "1.0.0-next.34",
"private": true,
"engines": {
"bun": "1"
},
"workspaces": [".", "api-service", "docs/*", "integrations/npm/*", "integrations/openapi-json"],
"scripts": {
"build:all": "nx run-many -t build",
"generate:all": "nx run-many -t generate",
"start:dev": "bun run --filter '@ladesa-ro/api.service' start:dev",
"lint:check": "biome lint --no-errors-on-unmatched",
"lint:fix": "biome lint --write --no-errors-on-unmatched",
"format:check": "biome format --no-errors-on-unmatched",
"format:fix": "biome format --write --no-errors-on-unmatched",
"code-static:check": "biome check --no-errors-on-unmatched",
"code-static:fix": "biome check --write --no-errors-on-unmatched",
"changeset:add": "changeset add",
"changeset:tag": "changeset tag",
"changeset:version": "changeset version && bun run code-static:fix",
"chore:update": "nx exec -- bun update && bun run code-static:fix"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.0",
"@nx/js": "^20.4.4",
"@types/bun": "^1.2.2",
"nx": "^20.4.4"
},
"packageManager": "[email protected]"
}