-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1 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
{
"name": "laravelstarter",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"prepare": "husky",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .eslintignore",
"lintfix": "eslint --fix --ext \".ts,.js\" --ignore-path .eslintignore .",
"format": "prettier --write \"resources/js/**/*.{js,ts,json,md}\"",
"pre-commit": "npm run format && lint-staged && pretty-quick --staged && vendor/bin/phpstan analyse -c phpstan.neon"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"axios": "^1.6.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"laravel-vite-plugin": "^1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"vite": "^5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}