package.json (view raw)
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 |
{ "name": "astro-erudite", "type": "module", "version": "1.1.3", "private": true, "scripts": { "dev": "astro dev", "start": "astro dev", "build": "astro check && astro build", "preview": "astro preview", "astro": "astro", "prettier": "prettier --write ." }, "dependencies": { "@astrojs/check": "^0.7.0", "@astrojs/markdown-remark": "^5.2.0", "@astrojs/mdx": "^3.1.2", "@astrojs/react": "^3.6.2", "@astrojs/rss": "^4.0.7", "@astrojs/sitemap": "^3.1.6", "@astrojs/tailwind": "^5.1.0", "@hbsnow/rehype-sectionize": "^1.0.7", "@iconify-json/lucide": "^1.2.4", "@iconify-json/ph": "^1.2.0", "@radix-ui/react-avatar": "^1.1.0", "@radix-ui/react-dropdown-menu": "^2.1.1", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-separator": "^1.1.0", "@radix-ui/react-slot": "^1.1.0", "@rehype-pretty/transformers": "^0.13.2", "@shikijs/transformers": "^1.16.3", "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", "astro": "^4.11.3", "astro-icon": "^1.1.1", "bootstrap-icons": "^1.11.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "lucide-react": "^0.441.0", "react": "^18.3.1", "react-dom": "^18.3.1", "rehype-katex": "^7.0.0", "rehype-pretty-code": "^0.14.0", "remark-emoji": "^5.0.1", "remark-math": "^6.0.0", "remark-toc": "^9.0.0", "tailwind-merge": "^2.5.2", "tailwindcss": "^3.4.3", "tailwindcss-animate": "^1.0.7", "typescript": "^5.4.5" }, "devDependencies": { "@tailwindcss/typography": "^0.5.13", "prettier": "^3.2.5", "prettier-plugin-astro": "^0.13.0", "prettier-plugin-astro-organize-imports": "^0.4.9", "prettier-plugin-tailwindcss": "^0.5.14" }, "prettier": { "semi": false, "singleQuote": true, "plugins": [ "prettier-plugin-astro", "prettier-plugin-tailwindcss", "prettier-plugin-astro-organize-imports" ], "overrides": [ { "files": "*.astro", "options": { "parser": "astro" } } ] } } |