-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 817 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 817 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
{
"name": "jordangarrison.dev",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && bun run generate-pdf",
"build:site": "astro build",
"generate-pdf": "node scripts/generate-pdf.js",
"preview": "astro preview",
"astro": "astro",
"check": "astro check"
},
"dependencies": {
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.1",
"@fontsource-variable/source-code-pro": "^5.2.7",
"@fontsource/plus-jakarta-sans": "^5.2.8",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.0.8",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"playwright": "^1.58.2",
"typescript": "^6.0.2"
}
}