-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"name": "itsdaniel.dk",
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"dev:network": "astro dev --host",
"build": "astro check && astro build",
"preview": "astro preview",
"preview:network": "astro preview --host",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/mdx": "5.0.3",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"@fontsource-variable/fira-code": "^5.2.7",
"@fontsource/fira-sans": "^5.2.7",
"@fontsource/metamorphous": "^5.2.8",
"@tailwindcss/vite": "^4.2.4",
"@vercel/analytics": "^2.0.1",
"astro": "6.1.8",
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@eslint/js": "^10.0.1",
"@tailwindcss/typography": "0.5.19",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"eslint-plugin-astro": "^1.7.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1"
}
}