-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "@he4rt/he4rtdevs",
"version": "3.0.0",
"license": "MIT",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"engines": {
"node": "^24"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "npx prettier --write \"**/*.{js,ts,json,yml,md,css,blade.php}\"",
"prepare": "npx -y husky",
"outdated": "npx npm-check-updates"
},
"devDependencies": {
"@prettier/plugin-php": "0.24.0",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.2.2",
"axios": "1.13.6",
"concurrently": "9.2.1",
"husky": "9.1.7",
"laravel-vite-plugin": "2.1.0",
"lint-staged": "16.4.0",
"npm-check-updates": "19.6.5",
"prettier": "3.8.1",
"prettier-plugin-blade": "3.1.4",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.2.2",
"tw-animate-css": "1.4.0",
"vite": "7.3.1"
},
"lint-staged": {
"*.{js,ts,json,yml,md,css,blade.php}": [
"prettier --write"
],
"*.php": [
"vendor/bin/rector process",
"vendor/bin/pint"
]
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.59.1",
"@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
"lightningcss-linux-x64-gnu": "1.32.0"
}
}