-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.13 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --write .",
"lint": "eslint \"resources/js/**/*.{js,vue}\"",
"lint:fix": "eslint --fix \"resources/js/**/*.{js,vue}\"",
"prepare": "husky install"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.3.11",
"autoprefixer": "^10.4.15",
"axios": "^1.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.0",
"laravel-vite-plugin": "^0.8.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.29",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.3",
"vite": "^4.0.0",
"vite-svg-loader": "^5.1.0"
},
"dependencies": {
"@inertiajs/vue3": "^1.0.14",
"@vitejs/plugin-vue": "^4.6.2",
"@vuepic/vue-datepicker": "^8.4.0",
"@vueuse/core": "^10.9.0",
"flowbite": "^2.2.1",
"laravel-vue-i18n": "^2.7.6",
"pdfjs-dist": "^4.0.379",
"swiper": "^11.0.5",
"uuid": "^9.0.1",
"vue": "^3.3.0"
},
"lint-staged": {
"*.{vue,js}": [
"prettier --write",
"eslint --fix"
],
"*.css": [
"prettier --write"
]
}
}