build stuff

This commit is contained in:
2025-12-12 17:27:08 -06:00
parent 3e8ff8ef4c
commit c3b2acd033
7 changed files with 1257 additions and 23 deletions

View File

@@ -5,9 +5,11 @@
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:app": "cd backend && node --watch app.ts",
"build": "esbuild backend/app.ts --bundle --platform=node --minify --outfile=dist/index.cjs --format=esm --external:node:* --legal-comments=none",
"lint": "tsc"
"dev:app": "cd backend && tsx watch app.ts",
"build": "esbuild backend/app.ts --bundle --platform=node --minify --outfile=dist/index.js --format=esm --packages=external",
"build:app": "ncc build backend/app.ts -o dist -m -s -e swagger-ui-express -e swagger-ui-dist -e swagger-jsdoc",
"lint": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
@@ -20,9 +22,19 @@
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/express": "^5.0.6",
"esbuild": "0.27.1"
"@types/node": "^24.10.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vercel/ncc": "^0.38.4",
"openapi-types": "^12.1.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"express": "^5.2.1"
"@scalar/express-api-reference": "^0.8.28",
"better-auth": "^1.4.6",
"express": "^5.2.1",
"npm-check-updates": "^19.1.2"
}
}