Files

42 lines
1.5 KiB
JSON

{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@inertiajs/svelte": "^3.0.0",
"@inertiajs/vite": "^3.0.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-svelte": "^3.16.0",
"globals": "^17.4.0",
"laravel-vite-plugin": "^3.0.0",
"prettier": "3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.55.0",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.3"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "bunx --bun prettier --config prettier.config.ts --cache --cache-strategy metadata --write .",
"lint": "bunx --bun eslint --config eslint.config.ts --cache --cache-location node_modules/.cache/eslint --fix .",
"check": "bunx --bun svelte-check --tsconfig tsconfig.json",
"test:lint": "bunx --bun eslint --config eslint.config.ts --cache --cache-location node_modules/.cache/eslint .",
"test:format": "bunx --bun prettier --config prettier.config.ts --cache --cache-strategy metadata --check .",
"test:all": "bun run check && bun run test:lint && bun run test:format"
}
}