-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "andri.dk",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bunx astro dev",
"dev:node": "bunx astro dev",
"start": "bun --bun server.mjs",
"build": "bunx astro build",
"format": "prettier --write .",
"verify:formatting": "prettier . --check",
"verify:types": "tsc --noEmit",
"preview": "bunx astro preview",
"deno": "deno run --allow-net --allow-read --allow-env ./dist/server/entry.mjs",
"check": "astro check",
"build:bin": "bun build server.mjs --compile --outfile ./app"
},
"dependencies": {
"@astrojs/mdx": "3.1.8",
"@astrojs/node": "8.3.4",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "4.0.8",
"@astrojs/sitemap": "3.2.0",
"@astrojs/tailwind": "5.1.2",
"@iconify-json/lucide": "^1.2.4",
"@iconify-json/simple-icons": "^1.2.2",
"@iconify-json/tabler": "^1.2.2",
"@react-pdf/renderer": "3.3.4",
"astro": "4.16.1",
"astro-icon": "^1.1.1",
"express": "^4.21.0",
"markdown-it": "^13.0.2",
"openai": "^4.67.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@babel/core": "^7.25.2",
"@fontsource-variable/inter": "^5.1.0",
"@fontsource-variable/montserrat": "^5.1.0",
"@fontsource-variable/source-code-pro": "^5.1.0",
"@fontsource/inter": "^5.1.0",
"@fontsource/montserrat": "~5.0.20",
"@tailwindcss/typography": "~0.5.15",
"@types/bun": "^1.1.10",
"@types/markdown-it": "^13.0.9",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.13.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "~0.14.1",
"remark-embed-images": "^3.1.0",
"sanitize-html": "^2.13.0",
"simple-icons": "^13.9.0",
"tailwindcss": "~3.4.11",
"vfile": "^6.0.3"
},
"workspaces": [
"packages/*"
]
}