-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "TAILWIND_MODE=watch mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"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",
"build": "npm run format && npm run lint && npm run prod"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@headlessui/vue": "^1.7.0",
"@heroicons/vue": "^2.0.8",
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@vue/compiler-sfc": "^3.2.36",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-vue": "^9.1.0",
"form-backend-validation": "^2.4.0",
"laravel-mix": "^6.0.41",
"laravel-nova-devtool": "file:vendor/laravel/nova-devtool",
"lodash": "^4.17.19",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"vue": "^3.2.37",
"vue-loader": "^16.8.3",
"vuedraggable": "^4.1.0"
},
"dependencies": {
"filesize": "^10.0.6",
"locutus": "^2.0.16",
"path-browserify": "^1.0.1"
}
}