-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
57
{
"name": "personal-website",
"type": "module",
"version": "0.0.1",
"lint-staged": {
"*.{ts,js,astro}": [
"yarn lint:fix",
"yarn format"
]
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier -w . --cache --plugin-search-dir=.",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/partytown": "^2.1.1",
"@astrojs/sitemap": "^3.0.4",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^6.1.4",
"@fontsource-variable/montserrat": "^5.0.17",
"@fontsource/material-symbols-rounded": "^5.1.3",
"@fontsource/yeseva-one": "^5.0.18",
"@octokit/graphql": "^7.0.2",
"@radix-ui/react-tooltip": "1.0.6",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"astro": "^4.1.1",
"astro-compress": "^2.2.7",
"astro-seo": "^0.8.0",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"sharp": "^0.33.2",
"tailwind-variants": "^0.1.20",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3"
}
}