-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "operately-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev:astro": "astro dev --port 4321",
"dev:wrangler": "npx wrangler pages dev --port 8788 --ip localhost",
"dev": "concurrently --kill-others \"npm run dev:astro\" \"npm run dev:wrangler\"",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.3.5",
"@astrojs/react": "^4.3.1",
"@astrojs/rss": "^4.0.12",
"@astrojs/starlight": "^0.35.2",
"@headlessui/react": "^2.2.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"astro": "^5.13.7",
"hast-util-is-element": "^3.0.0",
"lucide-react": "^0.454.0",
"markdown-it": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"sanitize-html": "^2.13.0",
"tailwindcss": "^4.0.0",
"ultrahtml": "^1.5.3"
},
"devDependencies": {
"concurrently": "^7.6.0",
"wrangler": "^3.0.0"
}
}