{ "name": "node-server", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "tsx watch src/index.ts", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "build": "npm run clean && npm run typecheck && esbuild src/index.ts --platform=node --format=cjs --bundle --sourcemap --minify --outdir=dist", "start": "node dist/index.js", "test": "echo \"No tests yet\"", "lint": "eslint src --ext .ts" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", "@types/express": "^5.0.0", "@types/node": "^22.10.7", "@types/response-time": "^2.3.8", "@typescript-eslint/eslint-plugin": "^8.22.0", "@typescript-eslint/parser": "^8.22.0", "eslint": "^9.19.0", "nodemon": "^3.1.9", "ts-node-dev": "^2.0.0", "tsx": "^4.19.2", "typescript": "^5.7.3" }, "dependencies": { "dotenv": "^16.4.7", "esbuild": "^0.24.0", "express": "^4.21.2", "helmet": "^8.0.0", "mariadb": "^3.4.0", "mysql2": "^3.12.0", "reflect-metadata": "^0.2.2", "response-time": "^2.3.3", "sequelize": "^6.37.5" } }