-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "app",
"type": "module",
"private": true,
"author": "Creasi Developers <[email protected]>",
"scripts": {
"build": "vite build",
"dev": "vite",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@fontsource-variable/inter": "^5.1.1",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.2",
"axios": "^1.7.4",
"concurrently": "^9.0.1",
"eslint": "^9.18.0",
"laravel-vite-plugin": "^1.0",
"lint-staged": "^15.3.0",
"postcss": "^8.4.31",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.1.0",
"vite": "^6.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit $1",
"pre-commit": "npx lint-staged --allow-empty"
},
"lint-staged": {
"*.{json,js,ts,vue}": [
"eslint --fix"
],
"{app,config,database,resources,tests}/**/*.php": [
"php vendor/bin/pint --preset laravel"
]
}
}