65 lines
2.0 KiB
JSON
65 lines
2.0 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite --https",
|
|
"build": "vite build",
|
|
"lint": "eslint --ext .js,.vue *.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": "^1.0.11",
|
|
"@popperjs/core": "^2.11.8",
|
|
"@sentry/tracing": "^7.65.0",
|
|
"@sentry/vue": "^7.65.0",
|
|
"@simplewebauthn/browser": "^8.0.2",
|
|
"@tailwindcss/forms": "^0.5.6",
|
|
"@tailwindcss/typography": "^0.5.9",
|
|
"@vitejs/plugin-basic-ssl": "^1.0.1",
|
|
"@vitejs/plugin-vue": "^4.3.4",
|
|
"ant-design-vue": "^4.0.1",
|
|
"autoprefixer": "^10.4.15",
|
|
"axios": "^1.5.0",
|
|
"charts.css": "^0.9.0",
|
|
"eslint": "^8.48.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-vue": "^9.17.0",
|
|
"husky": "^8.0.3",
|
|
"laravel-vite-plugin": "^0.8.0",
|
|
"laravel-vue-i18n": "^2.7.1",
|
|
"lint-staged": "^14.0.1",
|
|
"lodash": "^4.17.21",
|
|
"mitt": "^3.0.1",
|
|
"postcss": "^8.4.28",
|
|
"postcss-import": "^15.1.0",
|
|
"prettier": "^3.0.2",
|
|
"prettier-plugin-tailwindcss": "^0.5.3",
|
|
"sass": "^1.66.1",
|
|
"tailwindcss": "^3.3.3",
|
|
"tiny-emitter": "^2.1.0",
|
|
"uploadcare-vue": "^1.0.0",
|
|
"v-calendar": "^3.0.3",
|
|
"vite": "^4.4.9",
|
|
"vue": "^3.3.4",
|
|
"vue-clipboard3": "^2.0.0",
|
|
"vuedraggable": "^4.1.0",
|
|
"ziggy-js": "1.8.1"
|
|
},
|
|
"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.0.1"
|
|
}
|