forked from saminnet/astro-simple-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 956 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
37
38
39
40
{
"name": "dhanuka-portfolio",
"author": "Dhanuka Perera",
"description": "A simple portfolio template built with Astro",
"type": "module",
"license": "MIT",
"version": "1.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/sitemap": "^3.1.5",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.7.0",
"astro": "^4.10.2",
"astro-font": "^0.0.81",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.6",
"typescript": "^5.4.5"
},
"lint-staged": {
"*": "pnpm run lint:fix"
},
"engines": {
"pnpm": "9.x"
},
"packageManager": "pnpm@9.2.0"
}