core/package.json
2025-12-27 13:35:03 -03:00

17 lines
490 B
JSON

{
"name": "core",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:backend": "npm --prefix backend run dev",
"dev:dashboard": "cd dashboard && npm run dev",
"dev:landing": "cd landing && deno task start",
"dev:web": "npm-run-all -p dev:dashboard dev:landing",
"lint:dashboard": "cd dashboard && npm run lint",
"setup:appwrite": "npm --prefix backend run setup:appwrite"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}