-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.54 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "eventoswiki",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev --remote",
"build": "astro build --remote",
"preview": "astro preview",
"astro": "astro",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:unsafe": "biome check --write --unsafe .",
"format": "biome format --write .",
"hooks": "npx simple-git-hooks set"
},
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/db": "0.18.3",
"@astrojs/mdx": "4.3.12",
"@astrojs/node": "^9.5.1",
"@astrojs/react": "4.4.2",
"@fontsource-variable/inter": "^5.2.5",
"@googlemaps/places": "^2.2.0",
"@hookform/resolvers": "^5.0.1",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@pilcrowjs/object-parser": "^0.0.4",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toggle": "^1.1.9",
"@react-email/components": "^1.0.2",
"@react-email/render": "^2.0.0",
"@react-email/tailwind": "^2.0.2",
"@tailwindcss/vite": "^4.1.3",
"@tiptap/extension-color": "^3.0.0",
"@tiptap/extension-image": "^3.0.0",
"@tiptap/extension-link": "^3.0.0",
"@tiptap/extension-list-item": "^3.0.0",
"@tiptap/extension-text-align": "^3.0.0",
"@tiptap/extension-text-style": "^3.0.0",
"@tiptap/extension-underline": "^3.0.0",
"@tiptap/extension-youtube": "^3.0.0",
"@tiptap/pm": "^3.0.0",
"@tiptap/react": "^3.0.0",
"@tiptap/starter-kit": "^3.0.0",
"@types/react": "18.2.21",
"@types/react-big-calendar": "1.16.2",
"@types/react-dom": "18.2.7",
"add-to-calendar-button-react": "2.4.1",
"arctic": "^2.3.4",
"astro": "5.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.0",
"cmdk": "^1.1.1",
"compressorjs": "^1.2.1",
"date-fns": "^4.1.0",
"dayjs": "1.11.5",
"diod": "^3.0.0",
"framer-motion": "^12.15.0",
"lucia": "^3.2.2",
"lucide-react": "^0.487.0",
"marked": "^14.1.4",
"moment": "2.30.1",
"next-themes": "^0.4.6",
"pinata": "^2.3.0",
"react": "18.2.0",
"react-big-calendar": "1.19.4",
"react-day-picker": "^8.10.1",
"react-dom": "18.2.0",
"react-email": "^5.1.0",
"react-hook-form": "^7.55.0",
"react-icons": "5.5.0",
"resend": "^6.6.0",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"sonner": "^2.0.3",
"tailwind-merge": "^3.1.0",
"tailwindcss": "^4.1.3",
"tw-animate-css": "^1.2.5",
"typescript": "5.3.3",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"zod": "^3.25.76"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install biome check --write --unsafe --staged --no-errors-on-unmatched",
"commit-msg": "npx --no-install commitlint --edit ${1}"
},
"volta": {
"node": "20.15.0",
"npm": "9.6.7"
},
"engines": {
"node": ">=20.15.0",
"npm": ">=9.6.7"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@commitlint/config-conventional": "19.1.0",
"commitlint": "19.2.1",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-tailwindcss": "0.5.12",
"pretty-quick": "4.0.0",
"simple-git-hooks": "2.11.0"
}
}