-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "@gvieira18/sycorax",
"license": "MIT",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"engines": {
"node": "^22"
},
"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": {
"@tailwindcss/vite": "4.1.13",
"axios": "1.12.2",
"concurrently": "9.2.1",
"husky": "9.1.7",
"laravel-vite-plugin": "2.0.1",
"lint-staged": "16.2.0",
"npm-check-updates": "18.3.0",
"playwright": "1.55.1",
"prettier": "3.6.2",
"prettier-plugin-blade": "2.1.21",
"prettier-plugin-tailwindcss": "0.6.14",
"tailwindcss": "4.1.13",
"vite": "7.1.7"
},
"lint-staged": {
"*.{js,ts,json,yml,md,css,blade.php}": [
"prettier --write"
],
"*.php": [
"vendor/bin/pint",
"vendor/bin/rector process"
]
}
}