Template
1
0
Files
boilerplate/deno.json
2025-11-23 22:56:58 +01:00

44 lines
1.1 KiB
JSON

{
"unstable": ["fmt-component"],
"nodeModulesDir": "auto",
"workspace": [
"api",
"apps/react",
"modules/account",
"modules/tenant",
"platform/cerbos",
"platform/config",
"platform/database",
"platform/logger",
"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."
},
"react": {
"command": "cd ./apps/react && deno run dev",
"description": "Start react application 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."
}
}
}