-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1002 Bytes
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"bump": "./bin/bump.sh",
"test": "./bin/test.sh",
"restart": "./bin/restart.sh",
"benchmark": "./bin/benchmark.sh",
"client:dev": "astro dev",
"client:start": "astro dev",
"client:build": "astro build",
"client:preview": "astro preview",
"client:astro": "astro"
},
"lint-staged": {
"**/*.php": "./vendor/bin/pint --preset laravel"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"husky": "^9.0.11",
"laravel-vite-plugin": "^1.0.1",
"lint-staged": "^15.2.2",
"tailwindcss": "^3.3.2",
"vite": "^5.2.10"
},
"dependencies": {
"@astrojs/svelte": "^3.0.0",
"@astrojs/tailwind": "^4.0.0",
"@astrojs/vue": "^2.1.1",
"astro": "^2.4.5",
"dotenv": "^16.0.3",
"svelte": "^4.0.5",
"vue": "^3.3.1"
}
}