feat: /api/healthz 추가, node 22.11.0 수정, 사이트맵 삭제, env.qa 추가

This commit is contained in:
“hyeonggkim”
2025-10-14 13:14:15 +09:00
parent d8d1371254
commit ed939726cb
6 changed files with 59 additions and 74 deletions

View File

@@ -3,13 +3,18 @@
"private": true,
"type": "module",
"scripts": {
"dev:dev": "nuxt dev --dotenv .env.dev --host",
"dev:sandbox": "nuxt dev --dotenv .env.sandbox --host",
"dev:live": "nuxt dev --dotenv .env.live --host",
"build": "nuxt build",
"build:dev": "nuxt build --dotenv .env.dev",
"build:sandbox": "nuxt build --dotenv .env.sandbox",
"build:live": "nuxt build --dotenv .env.live",
"build:dev": "cross-env RUN_TYPE=dev nuxt build --dotenv .env.dev",
"build:dev2": "cross-env RUN_TYPE=dev nuxt build --dotenv .env.dev",
"build:qa": "cross-env RUN_TYPE=qa nuxt build --dotenv .env.qa",
"build:qa2": "cross-env RUN_TYPE=qa nuxt build --dotenv .env.qa",
"build:perf": "cross-env RUN_TYPE=perf nuxt build --dotenv .env.perf",
"build:sandbox": "cross-env RUN_TYPE=sandbox nuxt build --dotenv .env.sandbox",
"build:live": "cross-env RUN_TYPE=live nuxt build --dotenv .env.live",
"dev:dev": "cross-env RUN_TYPE=dev nuxt dev --dotenv .env.dev --host",
"dev:sandbox": "cross-env RUN_TYPE=sandbox nuxt dev --dotenv .env.sandbox --host",
"dev:qa": "cross-env RUN_TYPE=qa nuxt dev --dotenv .env.qa --host",
"dev:live": "cross-env RUN_TYPE=live nuxt dev --dotenv .env.live --host",
"preview": "nuxt preview",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx",
@@ -44,6 +49,7 @@
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-nuxt": "^4.0.0",