-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "portfolio",
"description": "My personal portfolio website built with Astro, React, and Tailwind CSS.",
"repository": "felixhoffmnn/portfolio",
"private": false,
"version": "0.2.1",
"author": "Felix Hoffmann <[email protected]>",
"scripts": {
"prepare": "husky",
"dev": "astro dev",
"build": "astro build",
"check": "astro check && tsc --noEmit",
"sync": "astro sync",
"preview": "astro preview",
"astro": "astro",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"format": "biome format --fix",
"format:check": "biome format --check"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^3.6.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@fontsource/inter": "^5.1.0",
"@fontsource/outfit": "^5.1.0",
"astro": "^4.16.16",
"astro-icon": "^1.1.4",
"astro-seo": "^0.8.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-math": "^6.0.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2"
},
"lint-staged": {
"*": ["biome check --no-errors-on-unmatched"]
}
}