Update package and ts setup.

This commit is contained in:
Patrick Fic
2025-10-31 15:58:24 -07:00
parent be3918cbaf
commit de883bd483
4 changed files with 974 additions and 146 deletions

1086
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,22 +7,22 @@
},
"type": "module",
"scripts": {
"server": "nodemon --exec node --loader ts-node/esm server.ts",
"server": "nodemon --exec \"node --import tsx\" server.ts",
"start": "node dist/server.js",
"build": "tsc -p .",
"makeitpretty": "prettier --write \"**/*.{css,js,json,jsx,scss,ts}\""
},
"dependencies": {
"@types/compression": "^1.8.1",
"axios": "^1.11.0",
"axios": "^1.13.1",
"body-parser": "^2.2.0",
"bullmq": "^5.56.5",
"bullmq": "^5.63.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "17.2.0",
"dotenv": "17.2.3",
"express": "^5.1.0",
"file-type": "^21.0.0",
"fs-extra": "^11.3.0",
"fs-extra": "^11.3.2",
"gm": "^1.25.1",
"helmet": "^8.1.0",
"image-thumbnail": "^1.0.17",
@@ -33,24 +33,25 @@
"node-cron": "^4.2.1",
"response-time": "^2.3.4",
"simple-thumbnail": "^1.6.5",
"winston": "^3.17.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/gm": "^1.25.4",
"@types/image-thumbnail": "^1.0.4",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.1.0",
"@types/node": "^24.9.2",
"@types/node-cron": "^3.0.11",
"@types/response-time": "^2.3.9",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}

View File

@@ -28,6 +28,17 @@ dotenv.config({
path: resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
});
// Global error handlers
process.on('uncaughtException', (error) => {
console.error('Uncaught Exception:', error);
process.exit(1);
});
process.on('unhandledRejection', (reason, promise) => {
console.error('Unhandled Rejection at:', promise, 'reason:', reason);
process.exit(1);
});
// Logger setup
const commonTransportConfig = {
maxSize: "20m",

View File

@@ -16,6 +16,6 @@
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["*.ts"],
"exclude": []
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
}