forked from hnooz/nova-google-map-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.17 KB
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
{
"private": true,
"type": "module",
"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/**/*.{css,js,vue}'",
"format": "prettier --write 'resources/js/**/*.{css,js,vue}'",
"lint": "eslint resources/js --fix --ext js,vue"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@vue/compiler-sfc": "^3.2.36",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"laravel-mix": "^6.0.41",
"path": "^0.12.7",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"vue-eslint-parser": "^10.1.3",
"vue-loader": "^17.0.1"
},
"dependencies": {
"axios": "^1.8.4",
"vue-google-autocomplete": "^1.1.4"
}
}