Files
speedBB/package.json
T
tracer d4d7934c89
CI/CD Pipeline / deploy (push) Successful in 38s
CI/CD Pipeline / promote_stable (push) Successful in 2s
Add asset import/export and local dev server setup
- Configure Vite dev server with localhost binding and public asset proxy
- Add npm scripts for concurrent Laravel/Vite development (dev:local, dev:test)
- Implement asset import/export in ACP via ZIP file upload/download
- Create AssetController for asset management endpoints
- Add asset management UI tab in admin panel
2026-05-16 16:33:22 +02:00

45 lines
1.4 KiB
JSON

{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"dev:local": "concurrently -n app,vite -c blue,magenta \"php artisan serve --host=127.0.0.1\" \"vite\"",
"dev:test": "concurrently -n app,vite -c blue,magenta \"php artisan serve --host=127.0.0.1\" \"vite --host 127.0.0.1 --port 5173\"",
"watch": "vite build --watch",
"lint": "eslint ."
},
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"i18next": "^25.7.3",
"i18next-http-backend": "^3.0.2",
"react": "^19.2.0",
"react-bootstrap": "^2.10.10",
"react-data-table-component": "^7.7.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-i18next": "^16.5.0",
"react-router-dom": "^7.11.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"laravel-vite-plugin": "^2.0.0",
"vite": "^7.0.7"
}
}