chore: remove junk

This commit is contained in:
enscribe 2024-09-10 10:36:58 -07:00
parent f6dcc302d4
commit 8f6872f739
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
96 changed files with 1002 additions and 2485 deletions

View file

@ -2,12 +2,14 @@
"name": "astro-micro",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"prettier": "prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.7.0",
@ -19,10 +21,8 @@
"@fontsource/geist-mono": "^5.0.3",
"@fontsource/geist-sans": "^5.0.3",
"astro": "^4.11.3",
"astro-pagefind": "^1.5.0",
"bootstrap-icons": "^1.11.3",
"clsx": "^2.1.1",
"rehype-accessible-emojis": "^0.3.2",
"rehype-katex": "^7.0.0",
"remark-emoji": "^5.0.1",
"remark-math": "^6.0.0",
@ -33,10 +33,26 @@
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"pagefind": "^1.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"prettier": {
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}