-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.98 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
{
"name": "arbor-summer-camp",
"type": "module",
"version": "0.0.1",
"description": "arborsummer.camp website",
"repository": {
"type": "git",
"url": "https://github.com/arborsummercamp/website.git"
},
"bugs": "https://github.com/arborsummercamp/website/issues",
"homepage": "https://arborsummer.camp",
"files": [
"*"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"pwa:generate-assets": "pwa-assets-generator --preset minimal public/logo.svg",
"vercel-build": "./vercel-build.sh"
},
"dependencies": {
"@astrojs/mdx": "4.0.8",
"@astrojs/react": "^4.3.0",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "6.0.0",
"@cloudflare/pages-plugin-mailchannels": "0.1.5",
"@lucide/astro": "^0.511.0",
"@types/react": "^19.1.6",
"@types/react-big-calendar": "^1.16.2",
"@types/react-dom": "^19.1.5",
"astro": "^5.7.13",
"astro-remote": "^0.3.4",
"daisyui": "^5.0.9",
"dayjs": "^1.11.13",
"gsap": "file:gsap-bonus.tgz",
"node": "^20.19.2",
"react": "^19.1.0",
"react-big-calendar": "^1.19.2",
"react-dom": "^19.1.0",
"tailwindcss": "3.4.1"
},
"devDependencies": {
"@astrolib/seo": "1.0.0-beta.8",
"@cloudflare/workers-types": "4.20250214.0",
"@iconify-json/ic": "1.2.2",
"@iconify-json/iconamoon": "1.2.2",
"@iconify-json/octicon": "1.2.5",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"@vite-pwa/assets-generator": "0.2.6",
"astro-icon": "1.1.5",
"prettier": "3.5.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.11",
"sharp": "0.33.5",
"unlighthouse": "^0.16.3"
},
"overrides": {
"sharp": "0.33.5"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"bracketSameLine": true,
"printWidth": 150,
"htmlWhitespaceSensitivity": "ignore",
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss"
]
}
}