-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.38 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
{
"private": true,
"version": "5.0.0",
"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",
"check-format": "prettier --list-different './resources/**/*.{js,vue}'",
"format": "prettier --write './resources/**/*.{js,vue}'",
"lint": "eslint --fix ./resources",
"version": "auto-changelog -p && git add CHANGELOG.md",
"bump-patch": "npm version patch --no-git-tag-version",
"bump-minor": "npm version minor --no-git-tag-version",
"bump-major": "npm version major --no-git-tag-version"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/compiler-sfc": "^3.2.47",
"auto-changelog": "^2.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.0.1",
"globals": "^15.14.0",
"laravel-mix": "^6.0.41",
"lodash": "^4.17.21",
"postcss": "^8.3.11",
"prettier": "^3.0.1",
"vue-loader": "^16.8.3"
}
}