-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 983 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
{
"name": "website",
"type": "module",
"version": "0.6.5",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "biome check --write ./ && prettier -w \"**/*\" --ignore-unknown --cache",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format:ci": "pnpm run biome:write && pnpm run prettier:write",
"biome:write": "biome check --write ./",
"prettier:write": "prettier -w ./"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "2.0.0-beta.0",
"@astrojs/sitemap": "3.0.0-beta.0",
"@astrojs/tailwind": "6.0.0-beta.0",
"astro": "4.0.0-beta.7",
"astro-icon": "^1.1.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tailwindcss/typography": "^0.5.14",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}