Merge pull request #22 from rede5/codex/fix-npm-build-error-due-to-missing-package.json

Add root package.json for dashboard builds
This commit is contained in:
Tiago Yamamoto 2026-01-08 15:59:42 -03:00 committed by GitHub
commit 7685244b5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "core-platform",
"private": true,
"workspaces": [
"dashboard"
],
"scripts": {
"build": "npm run build -w dashboard",
"dev:dashboard": "npm run dev -w dashboard",
"lint:dashboard": "npm run lint -w dashboard"
}
}