Add package.json for workspace setup and update frontend scripts to use Bun

This commit is contained in:
2025-11-30 14:13:06 -05:00
parent df72492e30
commit 25bbea01b4
3 changed files with 38 additions and 2 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "@albert-jeffers-studios/portfolio-site",
"version": "0.0.1",
"private": true,
"scripts": {
"ci-build:dist": "bun run build",
"dev": "bun run dev",
"start": "bun run start",
"lint": "bun run lint",
"lint:fix": "bun run lint:fix",
"format": "bun run format"
},
"workspaces": [
"frontend",
"server"
]
}