Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
smrtrfszm committed Sep 17, 2024
1 parent 8073658 commit 479c488
Show file tree
Hide file tree
Showing 12 changed files with 922 additions and 652 deletions.
15 changes: 0 additions & 15 deletions .eslintrc.json

This file was deleted.

24 changes: 24 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import js from '@eslint/js'
import solid from 'eslint-plugin-solid/configs/recommended'
import * as tsParser from '@typescript-eslint/parser'
import ts from 'typescript-eslint'

export default [
{
ignores: ['node_modules/**/*', 'dist/**/*', '.vinxi/**/*', '.output/**/*', 'eslint.config.js'],
},

js.configs.recommended,
...ts.configs.recommendedTypeChecked,

{
...solid,
files: ['**/*.{js,jsx,ts,tsx}'],
languageOptions: {
parser: tsParser,
parserOptions: {
projectService: true,
},
},
},
]
34 changes: 18 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,40 @@
"build": "vinxi build",
"start": "node ./.output/server/index.mjs",
"format": "biome format --write .",
"lint": "eslint --ext .tsx,.ts,.json,.js,.jsx ."
"lint": "eslint ."
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/color": "^3.0.6",
"@types/dompurify": "^3.0.5",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-solid": "^0.13.2",
"postcss": "^8.4.45",
"@types/node": "^22.5.5",
"@typescript-eslint/parser": "^8.5.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"eslint-plugin-solid": "^0.14.3",
"postcss": "^8.4.47",
"sass": "^1.78.0",
"typescript": "^5.5.4",
"vite": "^5.4.3"
"typescript": "5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.5"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.1",
"@solid-primitives/graphql": "^2.0.4",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.13.6",
"@solidjs/start": "1.0.0-rc.0",
"@solidjs/router": "^0.14.5",
"@solidjs/start": "1.0.6",
"color": "^4.2.3",
"date-fns": "^3.6.0",
"date-fns": "^4.0.0",
"dompurify": "^3.1.6",
"jsdom": "^24.1.3",
"jsdom": "^25.0.0",
"normalize.css": "^8.0.1",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.22",
"vinxi": "^0.3.14"
"vinxi": "^0.4.3"
},
"engines": {
"node": ">=18"
Expand Down
Loading

0 comments on commit 479c488

Please sign in to comment.