This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 2.05 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,
"scripts": {
"dev": "vite --https",
"build": "vite build",
"lint": "eslint --ext .js,.vue *.js resources",
"format": "prettier --write '**/*.{js,vue,css,scss}'",
"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/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"@inertiajs/progress": "^0.2.6",
"@popperjs/core": "^2.11.7",
"@sentry/tracing": "^7.11.1",
"@sentry/vue": "^7.11.1",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.7",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue": "^4.0.0",
"ant-design-vue": "^3.2.20",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"charts.css": "^0.9.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.11.1",
"husky": "^8.0.3",
"laravel-vite-plugin": "^0.7.4",
"laravel-vue-i18n": "^2.4.3",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"tiny-emitter": "^2.1.0",
"uploadcare-vue": "^1.0.0",
"v-calendar": "^3.0.3",
"vite": "^4.3.5",
"vue": "^3.3.4",
"vue-clipboard3": "^2.0.0",
"vuedraggable-es": "^4.1.1",
"ziggy-js": "1.5.2"
},
"lint-staged": {
"*.js|resources/**/*.{vue,js}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"resources/**/*.{css,scss}": [
"prettier --write --ignore-unknown"
],
"**/*.php": [
"vendor/bin/pint"
]
},
"packageManager": "[email protected]"
}