forked from 3pontos-tech/aegis-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 865 Bytes
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
{
"name": "@gvieira18/sycorax",
"license": "MIT",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "npx prettier --write \"**/*.{json,yml,md,css}\"",
"prepare": "npx -y husky"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"axios": "^1.8.2",
"concurrently": "^9.0.1",
"husky": "9.1.7",
"laravel-vite-plugin": "^1.2.0",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"tailwindcss": "^4.0.0",
"vite": "^6.2.4"
},
"lint-staged": {
"*.{json,yml,md,css}": [
"prettier --write"
],
"*.php": [
"vendor/bin/pint",
"vendor/bin/rector process"
]
}
}