-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.71 KB
/
package.json
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
{
"name": "glass.no",
"version": "2.0.0",
"private": true,
"type": "module",
"engineStrict": true,
"engines": {
"node": "^20",
"bun": "^1.1.0",
"npm": "please use bun",
"yarn": "please use bun",
"pnpm": "please use bun"
},
"scripts": {
"dev:ssl": "bunx --bun astro dev --port 5001 & caddy run",
"dev": "bunx --bun astro dev --port 5001",
"build": "rm -rf dist && astro telemetry disable && bunx --bun astro build",
"preview": "astro preview",
"start": "astro preview",
"clean": "rm -rf node_modules dist",
"format": "bun format:code",
"format:code": "prettier -w . --cache --plugin-search-dir=.",
"version": "changeset version && bun install --no-frozen-lockfile && bun format",
"update-deps": "bunx npm-check-updates --root --format group -i",
"typecheck": "tsc --noEmit",
"release": "changeset publish"
},
"dependencies": {
"@astrojs/mdx": "3.1.8",
"@astrojs/node": "8.3.4",
"@astrojs/react": "3.6.2",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "5.1.2",
"@calcom/embed-react": "^1.5.1",
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.27.1",
"@googlemaps/js-api-loader": "^1.16.6",
"@hookform/resolvers": "^3.3.4",
"@keystatic/astro": "^5.0.0",
"@keystatic/core": "^0.5.17",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@rive-app/canvas": "^2.15.6",
"@rive-app/react-canvas": "^4.14.5",
"astro": "4.16.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.3.0",
"framer-motion": "^11.11.10",
"jsx-email": "^1.12.1",
"ldrs": "^1.0.1",
"lucide-react": "^0.452.0",
"node-html-parser": "^6.1.13",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.4",
"suspend-react": "^0.1.3",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@sentry/vite-plugin": "^2.16.1",
"@types/google.maps": "^3.55.8",
"@types/node": "^20.12.11",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"cssnano": "^6.0.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"typescript": "^5.4.5"
}
}