forked from NikolaySav/nova-percent-field
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"nova:install": "npm --prefix='../../vendor/laravel/nova' ci",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix --ext js,vue",
"prepare": "husky install"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.22",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^9.7.0",
"form-backend-validation": "^2.3.3",
"husky": "^8.0.2",
"laravel-mix": "^6.0.41",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"postcss": "^8.3.11",
"prettier": "^2.7.1",
"vue-loader": "^16.8.3"
},
"dependencies": {},
"lint-staged": {
"**/*.{js,vue}": [
"eslint --fix"
],
"**/*.{css,md,json,scss,yaml,yml}": [
"prettier --write"
],
"**/*.php": [
"composer lint"
]
}
}