-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 899 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"prepare": "husky install"
},
"devDependencies": {
"axios": "^1.1.2",
"husky": "^8.0.3",
"laravel-vite-plugin": "^0.7.5",
"lint-staged": "^13.2.2",
"vite": "^4.0.0"
},
"lint-staged": {
"resources/**/*.{js,jsx,ts,tsx}": [
"npm run prettier",
"npm run eslint",
"git update-index --again"
],
"resources/**/*.{json,css,scss,md}": [
"npm run prettier",
"git update-index --again"
],
"**/*.php": [
"./vendor/bin/pint --preset laravel",
"git update-index --again"
]
},
"dependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6"
}
}