-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"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": "^3.1.7",
"@astrojs/react": "^3.6.2",
"@astrojs/starlight": "^0.29.2",
"@astrojs/tailwind": "^5.1.1",
"@headlessui/react": "^2.2.0",
"@tailwindcss/typography": "^0.5.12",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"astro": "^4.16.18",
"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": "^3.4.3"
},
"devDependencies": {
"concurrently": "^7.6.0",
"wrangler": "^3.0.0"
}
}