-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 922 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 922 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": "dh-forge-system",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"caddy": "caddy run --config Caddyfile",
"format": "biome format --write",
"lint": "biome lint --write .",
"lint:fix": "biome check --write .",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"prepare": "npx lint-staged",
"release": "turbo run build --filter=@forge/docs^... && changeset publish",
"schema:gen": "turbo run schema:gen",
"check": "turbo run check"
},
"lint-staged": {
"*.{json,css,html,ts,tsx,js,jsx}": "biome check --write --organize-imports-enabled=false --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.4",
"lint-staged": "^16.0.0",
"turbo": "^2.5.3"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
}
}