Template
1
0
Files
boilerplate/deno.json
2025-12-05 01:56:42 +01:00

46 lines
1.2 KiB
JSON

{
"unstable": ["fmt-component"],
"nodeModulesDir": "auto",
"workspace": [
"api",
"app",
"modules/account",
"modules/payment",
"modules/tenant",
"platform/cerbos",
"platform/config",
"platform/database",
"platform/logger",
"platform/parse",
"platform/relay",
"platform/routes",
"platform/server",
"platform/socket",
"platform/spec",
"platform/storage",
"platform/vault"
],
"tasks": {
"api": {
"command": "cd ./api && deno run start",
"description": "Start api server instance."
},
"app": {
"command": "cd ./app && deno run dev",
"description": "Start app client instance."
},
"check": {
"command": "deno run -A npm:@biomejs/biome check --write ./api ./apps/react/src ./modules ./platform",
"description": "Format, lint, and organize imports of the entire project."
},
"test": {
"command": "deno test --allow-all",
"description": "Runs all defined tests across the entire project."
},
"ncu": {
"command": "npx ncu -u -p npm",
"description": "Updates all the dependencies in package.json to their latest versions."
}
}
}