Files
publisher-dashboard/package.json
RevIQ c6380fff90 Add devenv processes for dev server and build:watch
- Add build:watch script to package.json (turbo build --watch)
- Configure devenv processes:
  - dev: runs turbo dev server
  - build-watch: runs turbo build in watch mode
- Run with `devenv up` to start all processes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-08 08:01:13 +08:00

31 lines
679 B
JSON

{
"name": "publisher-dashboard",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:watch": "turbo build --watch",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"typecheck": "turbo typecheck",
"clean": "turbo clean"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@macalinao/biome-config": "^0.1.7",
"turbo": "^2.7.3",
"typescript": "^5.9.3"
},
"catalog": {
"@macalinao/tsconfig": "^3.2.5",
"eslint": "^9.39.2",
"typescript": "^5.7.2",
"tslib": "^2.8.1"
},
"packageManager": "bun@1.1.42"
}