forked from joedixon/nova-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.32 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
{
"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",
"check-format": "prettier --list-different 'resources/**/*.{css,js,vue}'",
"format": "prettier --write 'resources/**/*.{css,js,vue}'",
"lint": "eslint resources/js --fix --ext js,vue",
"prepare": "husky install"
},
"devDependencies": {
"cross-env": "7.0.3",
"css-loader": "6.11.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier-vue": "4.2.0",
"eslint-plugin-vue": "9.30.0",
"husky": "8.0.3",
"laravel-mix": "6.0.49",
"laravel-nova": "1.12.3",
"lint-staged": "13.3.0",
"postcss": "8.4.47",
"prettier": "2.8.8",
"resolve-url-loader": "5.0.0",
"sass": "1.80.5",
"sass-loader": "13.3.3",
"vue-loader": "15.11.1",
"vue-template-compiler": "2.7.16",
"webpack": "5.95.0"
},
"lint-staged": {
"resources/**/*.{js,vue}": "eslint --cache --fix",
"resources/**/*.{css,js,vue}": "prettier --write"
}
}