-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 925 Bytes
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
{
"name": "nodehunt",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist",
"check:links": "node src/scripts/check-links.mjs",
"preview": "astro preview",
"check": "astro check",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/mdx": "latest",
"@astrojs/react": "^6.0.2",
"@astrojs/rss": "latest",
"@astrojs/sitemap": "latest",
"@rolldown/binding-linux-x64-gnu": "^1.2.3",
"@tailwindcss/vite": "latest",
"astro": "latest",
"pagefind": "latest",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sharp": "latest",
"tailwindcss": "latest"
},
"devDependencies": {
"prettier": "latest",
"prettier-plugin-astro": "latest",
"typescript": "latest"
}
}