Skip to content

Commit

Permalink
chore(dependencies): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mtthp committed May 15, 2024
1 parent 2dad2b7 commit bbff714
Show file tree
Hide file tree
Showing 6 changed files with 262 additions and 179 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"eslint.validate": ["javascript", "typescript", "vue", "json", "jsonc", "scss"],
"html.format.wrapLineLength": 100,
"svg.preview.background": "editor",
"files.insertFinalNewline": true
"files.insertFinalNewline": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,38 @@
{
"name": "tickets-manager-web",
"private": true,
"type": "module",
"version": "1.0.0",
"scripts": {
"build": "vue-tsc && vite build",
"build": "vite build",
"check": "eslint --ext .js,.vue src && vue-tsc",
"clean": "rm -rf node_modules/ && yarn",
"dev": "vite",
"postinstall": "patch-package",
"preview": "vite preview",
"serve": "docker run --rm --name tickets-manager-web-nginx -v $(pwd)/dist:/usr/share/nginx/html:ro -p9090:80 nginx"
"serve": "docker run --rm --name tickets-manager-web-nginx -v $(pwd)/dist:/usr/share/nginx/html:ro -p9999:80 nginx"
},
"dependencies": {
"@headlessui/vue": "^1.7.20",
"@headlessui/vue": "^1.7.22",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@jamescoyle/vue-icon": "^0.1.2",
"@johanaarstein/dotlottie-player-light": "^1.0.13",
"@mdi/js": "^7.4.47",
"@tanstack/vue-query": "^5.32.0",
"@unhead/vue": "^1.9.7",
"@tanstack/vue-query": "^5.36.0",
"@unhead/vue": "^1.9.10",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "10.2.0",
"axios": "^1.6.8",
"axios-retry": "^4.1.0",
"dayjs": "^1.11.10",
"axios-retry": "^4.2.0",
"dayjs": "^1.11.11",
"echarts": "^5.5.0",
"floating-vue": "^5.2.2",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"typeface-inter": "^3.18.1",
"uuid": "^9.0.1",
"vue": "^3.4.25",
"vue": "^3.4.27",
"vue-echarts": "6.6.8",
"vue-i18n": "^9.13.1",
"vue-number-animation": "^2.0.2",
Expand All @@ -41,32 +42,32 @@
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@tailwindcss/forms": "^0.5.7",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.19",
"eslint": "8",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-vue": "^9.25.0",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-vuejs-accessibility": "^2.3.0",
"patch-package": "^8.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-static-copy": "^1.0.3",
"vue-tsc": "^2.0.14"
"vite": "^5.2.11",
"vite-plugin-static-copy": "^1.0.4",
"vue-tsc": "^2.0.18"
}
}
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

<div class="mt-1 flex flex-row gap-3">
<RadioGroupOption
v-for="typeOption in ['subscription', 'ticket'] as AttendanceType[]"
v-for="typeOption in ['subscription', 'ticket']"
:key="`attendance-type-${typeOption}`"
as="template"
disabled
Expand Down
Loading

0 comments on commit bbff714

Please sign in to comment.