-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 960 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@inertiajs/vue3": "^1.0.2",
"@tailwindcss/forms": "^0.5.3",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"laravel-vite-plugin": "^0.7.4",
"lint-staged": "^13.2.1",
"momentum-trail": "^0.3.3",
"postcss": "^8.4.21",
"simple-git-hooks": "^2.8.1",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.2.1",
"vite-plugin-watch": "^0.1.1",
"vue": "^3.2.47",
"vue-tsc": "^1.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{json,json5,yaml,yml,js,cjs,ts,tsx,mts,cts,vue,md}": "eslint --fix",
"**/*.php": "./vendor/bin/pint"
}
}