-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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": "astro-build",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"start": "astro dev",
"dev": "wrangler types && astro dev",
"build": "wrangler types && astro build",
"check": "astro check",
"lint": "eslint .",
"format": "prettier --write . --ignore-path .prettierignore"
},
"dependencies": {
"@astrojs/alpinejs": "^0.5.0",
"@astrojs/check": "^0.9.9",
"@astrojs/cloudflare": "^13.5.4",
"@astrojs/mdx": "^5.0.6",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@lucide/astro": "^1.16.0",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.12",
"astro": "^6.3.7",
"wrangler": "^4.93.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.1",
"eslint": "^10.4.0",
"eslint-plugin-astro": "^1.7.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.4",
"rehype-external-links": "^3.0.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
}
}