Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Oct 18, 2024
1 parent 5b8e3b7 commit 60f7a85
Show file tree
Hide file tree
Showing 11 changed files with 2,976 additions and 4,042 deletions.
24 changes: 0 additions & 24 deletions .eslintrc.cjs

This file was deleted.

52 changes: 52 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import pluginVue from 'eslint-plugin-vue'
import vueTsEslintConfig from '@vue/eslint-config-typescript'
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
import eslintPluginImport from 'eslint-plugin-import'

import eslintPluginStorybook from 'eslint-plugin-storybook'

export default [
{
name: 'app/files-to-lint',
files: ['**/*.{js,cjs,mjs,ts,mts,vue}'],
},
{
name: 'app/files-to-ignore',
ignores: [
'**/dist',
'**/storybook-static/'
],
},
...pluginVue.configs['flat/essential'],
...vueTsEslintConfig(),
skipFormatting,
{
plugins: {
import: eslintPluginImport,
storybook: eslintPluginStorybook

},
rules: {
'vue/multi-word-component-names': 'off',
},
// settings: {
// 'import/resolver': {
// alias: {
// map: [['@', path.resolve('src')]],
// extensions: ['.vue', '.js', '.ts', '.d.ts'],
// },
// },
// 'vue-i18n': {
// localeDir: path.resolve('src', 'locales') + '/*.{json}',
// messageSyntaxVersion: '^9.0.0',
// },
// },
},
{
files: ['**/*.stories.*'],
rules: {
// '@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
},
]
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,50 +29,50 @@
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"gsap": "^3.12.5",
"postcss-cli": "^11.0.0",
"sass": "^1.79.2",
"sass": "^1.80.2",
"vite-svg-loader": "^5.1.0",
"vue-select": "^4.0.0-beta.3"
"vue-select": "4.0.0-beta.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@rushstack/eslint-patch": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/vue3": "^8.2.9",
"@storybook/vue3-vite": "^8.2.9",
"@rushstack/eslint-patch": "^1.10.4",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/vue3": "^8.3.5",
"@storybook/vue3-vite": "^8.3.5",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@types/node": "^20.16.12",
"@types/vue-select": "^3.16.8",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^25.0.0",
"npm-run-all2": "^6.2.0",
"postcss": "^8.4.45",
"prettier": "^3.2.5",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.10",
"typescript": "~5.4.0",
"vite": "^5.4.5",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-vue": "^9.29.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"storybook": "^8.3.5",
"tailwindcss": "^3.4.14",
"typescript": "~5.6.3",
"vite": "^5.4.9",
"vitest": "^1.6.0",
"vue-tsc": "^2.1.6"
},
Expand Down
Loading

0 comments on commit 60f7a85

Please sign in to comment.