Fix web dev startup

This commit is contained in:
dirtydishes 2025-12-27 19:51:43 -05:00
parent b8ac0e9292
commit c30429161c
5 changed files with 131 additions and 5 deletions

View file

@ -3,7 +3,7 @@
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 3000",
"dev": "bun run scripts/dev.ts",
"build": "next build",
"start": "next start -p 3000"
},
@ -12,5 +12,10 @@
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"typescript": "^5.5.4"
}
}