Update scripts and dependencies

This commit is contained in:
TSR Berry 2024-03-08 23:22:19 +01:00
parent 8c3d5783c0
commit 169a0a3bdc
No known key found for this signature in database
GPG Key ID: 52353C0A4CCA15E2
2 changed files with 405 additions and 297 deletions

677
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,31 +13,30 @@
"format": "prettier -w .",
"lint": "eslint --fix .",
"build": "tsc",
"prestart": "npm build",
"prestart": "npm run build",
"start": "node .",
"dev": "npm build && npm start",
"dev": "npm run build && npm run start",
"serve": "nodemon",
"prepack": "npm build",
"release": "tsc"
"prepack": "npm run build"
},
"dependencies": {
"ejs": "^3.1.9",
"express": "~4.18.2",
"express-actuator": "^1.8.4",
"redis": "^4.6.9",
"winston": "^3.10.0"
"redis": "^4.6.13",
"winston": "^3.12.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/express": "^4.17.17",
"@types/express-actuator": "^1.8.0",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"typescript": "^5.2.2"
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"typescript": "^5.4.0"
}
}