69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build && vite build --ssr",
|
|
"preview": "vite preview",
|
|
"lint": "eslint *.js resources",
|
|
"format": "prettier --write '**/*.{js,vue,css,scss,json,yml,md}'",
|
|
"postinstall": "husky install",
|
|
"test": "php artisan migrate:fresh --database=testing && php artisan db:seed --database=testing && vendor/bin/phpunit && vendor/bin/phpstan && vendor/bin/psalm",
|
|
"docker:build": "docker build --cache-from monica-next -t monica-next -f scripts/docker/Dockerfile . && docker image prune -f",
|
|
"docker:run": "docker run --name monica -p 8080:80 monica-next"
|
|
},
|
|
"devDependencies": {
|
|
"@inertiajs/vue3": "^2.0.17",
|
|
"@popperjs/core": "^2.11.8",
|
|
"@sentry/browser": "^10.3.0",
|
|
"@sentry/vite-plugin": "^4.0.2",
|
|
"@sentry/vue": "^10.3.0",
|
|
"@simplewebauthn/browser": "^13.1.2",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"@vitejs/plugin-basic-ssl": "^2.1.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vue/server-renderer": "^3.5.18",
|
|
"ant-design-vue": "^4.2.6",
|
|
"axios": "^1.11.0",
|
|
"charts.css": "^1.2.0",
|
|
"eslint": "^9.33.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-vue": "^10.4.0",
|
|
"globals": "^16.3.0",
|
|
"husky": "^9.1.7",
|
|
"laravel-vite-plugin": "^2.0.0",
|
|
"laravel-vue-i18n": "^2.8.0",
|
|
"lint-staged": "^16.1.5",
|
|
"lodash": "^4.17.21",
|
|
"lucide-vue-next": "^0.539.0",
|
|
"mitt": "^3.0.1",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
"sass": "^1.90.0",
|
|
"tailwindcss": "^4.1.11",
|
|
"tiny-emitter": "^2.1.0",
|
|
"uploadcare-vue": "^1.0.0",
|
|
"v-calendar": "^3.1.2",
|
|
"vite": "^7.1.1",
|
|
"vue": "^3.5.18",
|
|
"vue-clipboard3": "^2.0.0",
|
|
"vue-eslint-parser": "^10.2.0",
|
|
"vuedraggable": "^4.1.0",
|
|
"ziggy-js": "2.5.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.js|resources/**/*.{vue,js}": [
|
|
"eslint --fix",
|
|
"prettier --write --ignore-unknown"
|
|
],
|
|
"**/*.{css,scss,json,yml,md}": [
|
|
"prettier --write --ignore-unknown"
|
|
],
|
|
"**/*.php": [
|
|
"vendor/bin/pint"
|
|
]
|
|
},
|
|
"packageManager": "yarn@4.6.0"
|
|
}
|