-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 941 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
{
"name": "shrjamal.com",
"description": "My Personal website, https://shrjamal.com",
"version": "0.0.1",
"type": "module",
"scripts": {
"astro": "astro",
"dev": "astro dev",
"build": "astro build",
"preview": "wrangler dev",
"deploy": "astro build && wrangler deploy",
"check": "astro check",
"fmt": "biome check .",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "12.1.0",
"@astrojs/tailwind": "^5.1.4",
"@biomejs/biome": "1.9.4",
"@iconify/json": "^2.2.289",
"@iconify/tailwind": "^1.2.0",
"astro": "5.1.1",
"astro-meta-tags": "^0.3.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^3.99.0"
},
"simple-git-hooks": {
"pre-commit": "npx biome check --staged --no-errors-on-unmatched"
}
}