forked from monicahq/monica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
{
"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.6.2"
},
"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]"
}