-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:ssr": "vite build && vite build --ssr",
"prepare": "husky || true",
"lint": "eslint resources/js --fix",
"lint:check": "eslint resources/js",
"prettier": "prettier --write \"resources/**/*.{js,vue,css}\" \"**/*.{json,md,yml,yaml}\" --ignore-path .gitignore --ignore-path .prettierignore",
"prettier:check": "prettier --check \"resources/**/*.{js,vue,css}\" \"**/*.{json,md,yml,yaml}\" --ignore-path .gitignore --ignore-path .prettierignore",
"format": "npm run prettier && npm run lint",
"check": "npm run lint:check && npm run prettier:check"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@laravel/vite-plugin-wayfinder": "^0.1.7",
"@tailwindcss/vite": "^4.3.1",
"@vitejs/plugin-vue": "^6.0.7",
"concurrently": "^10.0.3",
"eslint": "^10.5.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"laravel-vite-plugin": "^3.1.0",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.1",
"vite": "^8.0.16",
"vue-eslint-parser": "^10.4.1"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@inertiajs/vite": "^3.4.0",
"@inertiajs/vue3": "^3.4.0",
"@sentry/vite-plugin": "^5.3.0",
"@sentry/vue": "^10.58.0",
"@vue/server-renderer": "^3.5.38",
"vue": "^3.5.38"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.62.2",
"@rollup/rollup-win32-x64-msvc": "4.62.0",
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.1",
"@tailwindcss/oxide-win32-x64-msvc": "^4.3.1",
"lightningcss-linux-x64-gnu": "^1.32.0",
"lightningcss-win32-x64-msvc": "^1.32.0"
},
"lint-staged": {
"resources/js/**/*.{js,vue}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,scss,html,json,md,yml,yaml}": [
"prettier --write"
],
"**/*.php": [
"php ./vendor/bin/pint --config=pint.json"
]
}
}