mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-07-16 13:55:21 +00:00
* build: migrate frontend tooling to pnpm (v3) Rebuilds the stale #673 on current 3.x so it doesn't revert #657's test split, the Node-24 action bumps, or composer-install@4.0.0. - package.json: packageManager pnpm@11.6.0; drop dead 'resolutions' - pnpm-workspace.yaml: nodeLinker hoisted, allowBuilds vue-demi, overrides brace-expansion (replaces resolutions) - pnpm-lock.yaml generated via 'pnpm import' from yarn.lock (keeps the resolved versions, incl. vite 8.0.3 / rolldown rc.12); yarn.lock removed - docker.yaml + release.yaml: pnpm/action-setup@v6 + cache pnpm + pnpm install/build (action versions and the #657 split left intact; check.yaml needs no change — its test job is PHP-only after #657) - 3 Dockerfiles: node:24 + corepack + pnpm install --frozen-lockfile && pnpm build - Makefile, composer 'dev' script, CLAUDE.md, .gitignore -> pnpm * fix(deps): pin vite to 8.0.5 (security) Now that 3.x is the default branch, Dependabot flags vite <8.0.5. Pin to 8.0.5 (the patched version), which keeps rolldown 1.0.0-rc.12 — still below 8.0.15 where the broken rolldown 1.0.3 (the init_runtime_dom_esm_bundler chunk regression) starts, so the build stays clean. Mirrors v2's #674.
128 lines
4.1 KiB
JSON
128 lines
4.1 KiB
JSON
{
|
|
"name": "invoiceshelf/invoiceshelf",
|
|
"description": "Free & Open Source Invoice App for Individuals & Small Businesses. https://invoiceshelf.com",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^8.4",
|
|
"barryvdh/laravel-dompdf": "^v3.0",
|
|
"dragonmantank/cron-expression": "^v3.4",
|
|
"gotenberg/gotenberg-php": "^2.8",
|
|
"guzzlehttp/guzzle": "^7.9",
|
|
"hashids/hashids": "^5.0",
|
|
"invoiceshelf/modules": "^3.0.3",
|
|
"laravel/framework": "^13.0",
|
|
"laravel/helpers": "^1.7",
|
|
"laravel/sanctum": "^4.0",
|
|
"laravel/tinker": "^3.0",
|
|
"laravel/ui": "^4.6",
|
|
"lavary/laravel-menu": "^1.8",
|
|
"league/flysystem-aws-s3-v3": "^3.29",
|
|
"predis/predis": "^2.3",
|
|
"silber/bouncer": "^1.0.4",
|
|
"spatie/flysystem-dropbox": "^3.0",
|
|
"spatie/laravel-backup": "^10.0",
|
|
"spatie/laravel-medialibrary": "^11.11",
|
|
"symfony/http-client": "^7.3",
|
|
"symfony/mailer": "^7.3",
|
|
"symfony/mailgun-mailer": "^7.3",
|
|
"symfony/postmark-mailer": "^7.3"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^3.5",
|
|
"fakerphp/faker": "^1.23",
|
|
"jasonmccreary/laravel-test-assertions": "^2.9",
|
|
"laravel/boost": "^2.3",
|
|
"laravel/pint": "^1.13",
|
|
"laravel/sail": "^1.41",
|
|
"mockery/mockery": "^1.6",
|
|
"nunomaduro/collision": "^8.6",
|
|
"pestphp/pest": "^4.0",
|
|
"pestphp/pest-plugin-faker": "^4.0",
|
|
"pestphp/pest-plugin-laravel": "^4.0",
|
|
"phpunit/phpunit": "^12.0",
|
|
"spatie/laravel-ignition": "^2.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"app/Support/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "pint --test",
|
|
"lint:fix": "pint",
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi",
|
|
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
|
"@php artisan migrate --graceful --ansi"
|
|
],
|
|
"dev": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"pnpm dev\" --names=server,queue,logs,vite"
|
|
],
|
|
"ide-helper": [
|
|
"@php artisan ide-helper:generate",
|
|
"@php artisan ide-helper:meta"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
},
|
|
"merge-plugin": {
|
|
"include": [
|
|
"Modules/*/composer.json"
|
|
],
|
|
"recurse": true,
|
|
"replace": false,
|
|
"ignore-duplicates": false,
|
|
"merge-dev": true,
|
|
"merge-extra": false,
|
|
"merge-extra-deep": false,
|
|
"merge-scripts": false
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true,
|
|
"wikimedia/composer-merge-plugin": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"repositories": {
|
|
"invoiceshelf-modules": {
|
|
"type": "vcs",
|
|
"url": "https://github.com/InvoiceShelf/modules.git"
|
|
}
|
|
}
|
|
}
|