chore(scaffold): installer deps runtime/dev + configurer Vitest

This commit is contained in:
Hermann_Kitio 2026-04-17 16:20:54 +03:00
parent 941ddb9856
commit 16a8bfbe41
4 changed files with 3223 additions and 11 deletions

3204
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -8,28 +8,46 @@
"build": "tsc -b && vite build", "build": "tsc -b && vite build",
"typecheck": "tsc --noEmit -p tsconfig.app.json", "typecheck": "tsc --noEmit -p tsconfig.app.json",
"lint": "eslint .", "lint": "eslint .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@supabase/supabase-js": "^2.103.2", "@supabase/supabase-js": "^2.103.2",
"@tanstack/react-query": "^5.59.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"react": "^19.2.4", "react": "^19.2.4",
"react-dom": "^19.2.4", "react-dom": "^19.2.4",
"react-router-dom": "^7.14.1" "react-router-dom": "^7.14.1",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.39.4", "@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2", "@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.12.2", "@types/node": "^24.12.2",
"@types/react": "^19.2.14", "@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1", "@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4", "eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2", "eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0", "globals": "^17.4.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.2.2", "tailwindcss": "^4.2.2",
"typescript": "~6.0.2", "typescript": "~6.0.2",
"typescript-eslint": "^8.58.0", "typescript-eslint": "^8.58.0",
"vite": "^8.0.4" "vite": "^8.0.4",
"vitest": "^3.2.4"
} }
} }

1
src/test-setup.ts Normal file
View file

@ -0,0 +1 @@
import '@testing-library/jest-dom/vitest'

View file

@ -1,5 +1,5 @@
import { fileURLToPath, URL } from 'node:url' import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite' import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react' import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite' import tailwindcss from '@tailwindcss/vite'
@ -11,4 +11,9 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url)), '@': fileURLToPath(new URL('./src', import.meta.url)),
}, },
}, },
test: {
environment: 'jsdom',
setupFiles: ['./src/test-setup.ts'],
globals: false,
},
}) })