-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 1016 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
41
42
{
"name": "koma-homepage",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prettier": "prettier"
},
"dependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/mdx": "^2.1.1",
"@astrojs/tailwind": "^5.1.0",
"@tailwindcss/typography": "^0.5.10",
"astro": "^4.16.6",
"astro-compress": "^2.2.9",
"astro-heroicons": "^2.1.1",
"favicons": "^7.2.0",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"rehype-external-links": "^3.0.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "5.4"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"printWidth": 100,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss"
]
}
}