Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunoru committed Sep 5, 2024
1 parent 29dd559 commit 76313b8
Show file tree
Hide file tree
Showing 5 changed files with 189 additions and 191 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "tsup src/index.ts --minify"
},
"dependencies": {
"discordeno": "19.0.0-next.faaa8af",
"@discordeno/bot": "19.0.0-next.ff6dcb1",
"dotenv": "^16.4.5",
"hono": "^4.5.11"
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"pinia": "^2.2.2",
"quasar": "^2.16.10",
"vgc-tools": "workspace:^",
"vue": "^3.5.1",
"vue": "^3.5.2",
"vue-i18n": "^9.14.0",
"vue-router": "^4.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/quasar.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module.exports = configure(function (/* ctx */) {
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#devServer
devServer: {
// https: true
open: true, // opens browser window automatically
open: false, // opens browser window automatically
},

// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#framework
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"dev": "yarn workspace vgc-tools dev & yarn workspace vgc dev",
"build": "yarn workspace vgc-tools build && yarn workspace vgc build"
"dev": "concurrently 'yarn workspace vgc-tools dev' 'npm:dev:api' 'yarn workspace vgc dev'",
"dev:api": "yarn workspace vgc-api dev",
"build": "yarn workspace vgc-tools build && yarn workspace vgc-api build && yarn workspace vgc build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"prettier": "^3.3.3"
}
}
Loading

0 comments on commit 76313b8

Please sign in to comment.