feat: update the start and dev script, removed the "start:server" script in order to use the dev one.

This commit is contained in:
Nixyan 2026-01-08 10:03:52 -03:00
parent f39f8ee830
commit 0426bf3282

View file

@ -4,10 +4,9 @@
"private": true, "private": true,
"scripts": { "scripts": {
"postinstall": "bun src/lib/scripts/copy-olm.ts", "postinstall": "bun src/lib/scripts/copy-olm.ts",
"dev": "next dev", "dev": "cross-env NODE_ENV=development PORT=3000 tsx src/server.ts",
"build": "bun src/lib/scripts/copy-olm.ts && next build", "build": "bun src/lib/scripts/copy-olm.ts && next build",
"start": "NODE_ENV=production tsx src/server.ts", "start": "cross-env NODE_ENV=production PORT=8081 tsx src/server.ts"
"start:server": "NODE_ENV=development tsx src/server.ts"
}, },
"dependencies": { "dependencies": {
"@convex-dev/better-auth": "^0.10.9", "@convex-dev/better-auth": "^0.10.9",