Merge pull request #480 from BEDOLAGA-DEV/dev

Dev
This commit is contained in:
Egor
2026-07-13 00:04:41 +03:00
committed by GitHub
49 changed files with 2145 additions and 1836 deletions

View File

@@ -8,10 +8,11 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"prepare": "husky"
@@ -74,35 +75,26 @@
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@biomejs/biome": "2.5.3",
"@types/dompurify": "^3.0.5",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/react-twemoji": "^0.4.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.4.31",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.2.2",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
"*.{ts,tsx,json}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{css,json}": [
"prettier --write"
"*.css": [
"biome format --write --no-errors-on-unmatched"
]
}
}