Migrate to vuetify and vite (#251)

This commit is contained in:
2025-08-29 20:57:27 -04:00
committed by GitHub
parent 065c965f00
commit f0e33e6060
13 changed files with 2230 additions and 362 deletions

View File

@@ -3,36 +3,44 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"serve": "vite",
"preview": "vite preview",
"build": "vite build",
"lint": "eslint . --fix"
},
"dependencies": {
"@fontsource/roboto": "5.2.6",
"@github/hotkey": "^3.0.0",
"@mdi/font": "7.4.47",
"@popperjs/core": "^2.11.8",
"axios": "^1.11.0",
"bootstrap": "^5.3.1",
"bootstrap-vue": "^2.22.0",
"core-js": "^3.32.1",
"cssnano": "^7.0.0",
"jquery": "^3.7.0",
"moment": "^2.29.4",
"vue": "^3.3.4",
"vue": "^3.5.17",
"vue-github-button": "^3.0.3",
"vue-loading-overlay": "^6.0.3",
"vue-router": "4.5.1"
"vue-router": "^4.5.1",
"vuetify": "^3.9.6"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@types/bootstrap": "^5.2.6",
"@types/mousetrap": "^1.6.11",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "^5.0.8",
"@vue/cli-service": "^5.0.9",
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
"postcss-cli": "^11.0.0"
"postcss-cli": "^11.0.0",
"sass-embedded": "^1.89.2",
"unplugin-fonts": "^1.3.1",
"unplugin-vue-components": "^28.8.0",
"vite": "^6.3.5",
"vite-plugin-vuetify": "^2.1.1"
},
"eslintConfig": {
"root": true,
@@ -47,11 +55,5 @@
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}
}