Files
web-temp/package.json
2025-09-16 13:33:56 +09:00

56 lines
1.7 KiB
JSON

{
"name": "nuxt4-multigame",
"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",
"preview": "nuxt preview",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm typecheck && pnpm lint && pnpm format:check"
},
"dependencies": {
"@nuxtjs/i18n": "^10.0.6",
"@pinia/nuxt": "^0.6.1",
"@vueuse/core": "^13.6.0",
"@vueuse/nuxt": "^13.6.0",
"h3": "^1.15.4",
"nuxt": "^4.0.3",
"pinia": "^2.3.1",
"vue": "^3.5.0",
"vue-dompurify-html": "^5.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@nuxt/eslint-config": "^1.9.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.4.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.5.0",
"vue-tsc": "^3.0.7"
},
"engines": {
"node": ">=18.20.0"
}
}