run prettier on ui

This commit is contained in:
2025-07-25 22:39:10 +01:00
parent 8c12ca0024
commit df81605ecc
8 changed files with 236 additions and 129 deletions

View File

@ -8,8 +8,10 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest run"
"watch": "vitest watch"
"test": "vitest run",
"watch": "vitest watch",
"lint": "eslint",
"fmt": "prettier"
},
"dependencies": {
"@nuxt/eslint": "1.6.0",
@ -19,10 +21,17 @@
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.32.0",
"@nuxt/test-utils": "^3.19.2",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.32.0",
"eslint-plugin-vue": "^10.3.0",
"globals": "^16.3.0",
"happy-dom": "^18.0.1",
"playwright-core": "^1.54.1",
"prettier": "3.6.2",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
}
}