feat: Implement health checks, rate limiting, and security headers for services, update Node.js versions, and add Prettier configuration for frontend.

This commit is contained in:
2026-03-12 17:09:05 -03:00
parent 5e3db5f2a2
commit f9f1238310
21 changed files with 966 additions and 109 deletions
+8 -2
View File
@@ -3,10 +3,14 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"dependencies": {
"clsx": "^2.1.1",
@@ -31,6 +35,8 @@
"eslint": "^8",
"eslint-config-next": "14.2.21",
"postcss": "^8",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}