- Add .gitea/workflows/ci.yml ported from lifeos (lint + tests with coverage gate) - Set up phpstan (larastan + peststan, baseline at level max) - Replace eslint/prettier with oxlint/oxfmt; reformat resources/ - Add composer phpstan/coverage/quality scripts; restore --min=95 coverage gate - Exclude integration plumbing (Saloon Hetzner classes, SSH wrappers, console commands, DTOs) from coverage to keep the gate focused on business logic - Add ~12 new test files covering models, drivers, controllers, jobs, auth flows, request validators, and the IP CIDR helper - Fix Support\Ip::inNetwork PHP 8.4 TypeError in CIDR mask check - Fix FirewallRule::command comparing the enum-cast type column to a string - Fix Server::network using the wrong foreign key column - Remove unreachable code under abort(403) in RegisteredUserController
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"build:ssr": "vite build && vite build --ssr",
|
|
"dev": "vite",
|
|
"format": "oxfmt resources/",
|
|
"format:check": "oxfmt --check resources/",
|
|
"lint": "oxlint --fix",
|
|
"lint:check": "oxlint"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.5",
|
|
"oxfmt": "^0.49.0",
|
|
"oxlint": "^1.64.0",
|
|
"vue-tsc": "^2.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@inertiajs/vue3": "^2.0.0-beta.3",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vueuse/core": "^12.0.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"concurrently": "^9.0.1",
|
|
"laravel-vite-plugin": "^2.0.1",
|
|
"lucide": "^0.468.0",
|
|
"lucide-vue-next": "^0.468.0",
|
|
"radix-vue": "^1.9.11",
|
|
"reka-ui": "^2.2.0",
|
|
"tailwind-merge": "^2.6.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "^5.2.2",
|
|
"vite": "npm:rolldown-vite@latest",
|
|
"vue": "^3.5.13",
|
|
"ziggy-js": "^2.4.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "4.9.5",
|
|
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
|
|
"lightningcss-linux-x64-gnu": "^1.29.1"
|
|
}
|
|
}
|