🎨 Improve code readability by reformatting and updating function definitions and comments

This commit is contained in:
2026-01-28 18:18:55 +00:00
parent 1944b43af8
commit a24f766e37
154 changed files with 7261 additions and 117 deletions

View File

@@ -6,13 +6,21 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
"preview": "vite preview",
"oauth-proxy": "node server/oauth-proxy.js",
"dev:full": "concurrently \"npm run dev\" \"npm run oauth-proxy\""
},
"dependencies": {
"vue": "^3.4.15"
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"vue": "^3.4.15",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
"concurrently": "^8.2.2",
"vite": "^5.0.12"
}
}