Skip to content

Commit

Permalink
chore: update dependencies (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert authored Jun 7, 2023
1 parent 5dbe3e8 commit c6cb1e5
Show file tree
Hide file tree
Showing 8 changed files with 1,156 additions and 1,046 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");

module.exports = {
root: true,
extends: [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier",
],
parserOptions: {
ecmaVersion: "latest",
},
rules: {
"prettier/prettier": [
"error",
{
singleQuote: false,
endOfLine: "auto",
},
],
},
};
21 changes: 0 additions & 21 deletions .eslintrc.json

This file was deleted.

52 changes: 27 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,50 @@
"name": "template-vue",
"version": "1.1.0",
"private": true,
"packageManager": "pnpm@7.27.0",
"packageManager": "pnpm@8.6.1",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.ts --fix --ignore-path .gitignore",
"prepare": "simple-git-hooks",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@fontsource/open-sans": "^4.5.14",
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
"@fontsource/open-sans": "^5.0.2",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-i18n": "^9.3.0-beta.19",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^0.8.2",
"@intlify/unplugin-vue-i18n": "~0.11.0",
"@rushstack/eslint-patch": "^1.3.0",
"@semantic-release/git": "^10.0.1",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.16",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "~0.4.0",
"eslint": "^8.42.0",
"eslint-plugin-vue": "^9.14.1",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"semantic-release": "^20.1.1",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"semantic-release": "^21.0.3",
"simple-git-hooks": "^2.8.1",
"typescript": "~4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
"typescript": "~5.1.3",
"vite": "^4.3.9",
"vitest": "~0.32.0",
"vue-tsc": "^1.6.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
Expand Down
Loading

0 comments on commit c6cb1e5

Please sign in to comment.