-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "website",
"type": "module",
"license": "MIT",
"private": true,
"version": "0.0.1",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.2.0 <25.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"type-check": "svelte-check && astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fix": "pnpm format && pnpm lint:fix",
"check": "pnpm type-check && pnpm lint && pnpm format:check"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "^8.0.5",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"astro": "^6.1.9",
"sharp": "^0.34.5",
"svelte": "^5.55.5"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/ts-plugin": "^1.10.7",
"@eslint/js": "^10.0.1",
"@iconify-json/lucide": "^1.2.103",
"@iconify-json/simple-icons": "^1.2.79",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.4",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.3",
"svelte-check": "^4.4.6",
"svelte-eslint-parser": "^1.6.0",
"tailwindcss": "^4.2.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"unplugin-icons": "^23.0.1"
}
}