-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "v5",
"type": "module",
"version": "1.1.9",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"fonts": "./scripts/process-fonts.sh",
"prettier": "prettier --write .",
"photos:manifest": "node ./scripts/process-and-upload-images.cjs --manifest-only",
"photos:metadata": "node ./scripts/process-and-upload-images.cjs --metadata-only",
"photos:locations": "node ./scripts/reverse-geocode-photo-locations.cjs",
"photos:organize": "node ./scripts/organize-photo-export.cjs",
"photos:sanitize": "node ./scripts/sanitize-photo-manifest.cjs",
"photos:sync-metadata": "node ./scripts/sync-photo-metadata-from-sources.cjs",
"photos:sync-manifest": "node ./scripts/sync-photo-manifest-from-r2.cjs",
"process-images": "node ./scripts/process-and-upload-images.cjs"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.2",
"@astrojs/mdx": "^7.0.5",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/vercel": "^11.0.5",
"@aws-sdk/client-s3": "^3.893.0",
"@fontsource-variable/figtree": "^5.3.0",
"@fontsource-variable/source-serif-4": "^5.3.0",
"@fontsource/instrument-serif": "^5.3.0",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@iconify-json/lucide": "^1.2.4",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.3",
"@rehype-pretty/transformers": "^0.13.2",
"@shikijs/transformers": "^1.16.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"astro": "^7.2.2",
"bootstrap-icons": "^1.11.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"exifr": "^7.1.3",
"lucide-react": "^0.441.0",
"plausible-tracker": "^0.3.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.0",
"rehype-pretty-code": "^0.14.0",
"remark-emoji": "^5.0.1",
"remark-math": "^6.0.0",
"remark-toc": "^9.0.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.14",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-astro-organize-imports": "^0.4.9",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"overrides": {
"@vercel/routing-utils": {
"path-to-regexp": "6.3.0"
},
"yaml-language-server": {
"yaml": "2.8.4"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss",
"prettier-plugin-astro-organize-imports"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}