-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
65 lines (65 loc) · 2.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite --https",
"build": "vite build",
"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": "^1.2.0",
"@popperjs/core": "^2.11.8",
"@sentry/tracing": "^7.119.1",
"@sentry/vue": "^8.33.1",
"@simplewebauthn/browser": "^10.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-vue": "^5.1.4",
"ant-design-vue": "^4.2.5",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"charts.css": "^1.1.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.6",
"laravel-vite-plugin": "^1.0.5",
"laravel-vue-i18n": "^2.7.7",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "^1.79.4",
"tailwindcss": "^3.4.13",
"tiny-emitter": "^2.1.0",
"uploadcare-vue": "^1.0.0",
"v-calendar": "^3.1.2",
"vite": "^5.4.8",
"vue": "^3.5.11",
"vue-clipboard3": "^2.0.0",
"vuedraggable": "^4.1.0",
"ziggy-js": "2.3.0"
},
"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": "[email protected]"
}