-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.23 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
34
35
36
37
38
39
40
{
"name": "hexa",
"private": true,
"type": "module",
"scripts": {
"clean:list": "find . -name 'node_modules' -type d -prune",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +",
"build": "turbo build",
"dev": "turbo dev",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"check-types": "turbo check-types",
"sync-deps": "syncpack list",
"setup": "pnpm run setup:dev",
"setup:dev": "tsx scripts/setup-dev.ts",
"check-updates": "tsx scripts/check-updates.ts",
"dev:proxy": "sudo .caddy/caddy run --adapter caddyfile --config ./Caddyfile",
"dev:all": "concurrently \"pnpm dev:proxy\" \"pnpm dev\""
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@hexa/typescript-config": "workspace:*",
"concurrently": "catalog:",
"node-fetch": "catalog:",
"prompts": "^2.4.2",
"syncpack": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"ultracite": "catalog:",
"wrangler": "catalog:",
"yaml": "catalog:"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}