Files
astroplate/package.json
T

62 lines
1.9 KiB
JSON
Raw Normal View History

2023-04-17 12:50:29 +06:00
{
"name": "astroplate",
"version": "6.0.1",
2023-04-17 12:50:29 +06:00
"description": "Astro and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
2025-02-17 09:10:10 +06:00
"packageManager": "yarn@1.22.22",
2025-10-14 12:07:37 +06:00
"type": "module",
2023-04-17 12:50:29 +06:00
"scripts": {
"dev": "concurrently \"node scripts/themeGenerator.js --watch\" \"node scripts/jsonGenerator.js && astro dev\"",
"build": "node scripts/themeGenerator.js && node scripts/jsonGenerator.js && astro build",
2023-12-03 15:28:12 +06:00
"preview": "astro preview",
2025-01-05 15:55:16 +06:00
"check": "astro check",
"format": "prettier -w ./src",
"generate-json": "node scripts/jsonGenerator.js",
"remove-darkmode": "node scripts/removeDarkmode.js && yarn format",
"deploy:cf-workers": "npm run build && wrangler deploy",
"preview:cf-workers": "npm run build && wrangler dev"
2023-04-17 12:50:29 +06:00
},
"dependencies": {
"@astrojs/check": "0.9.7",
"@astrojs/mdx": "5.0.0",
"@astrojs/react": "5.0.0",
"@astrojs/sitemap": "3.7.1",
2025-10-05 16:12:17 +06:00
"@digi4care/astro-google-tagmanager": "^1.6.0",
2025-11-04 12:48:44 +06:00
"@justinribeiro/lite-youtube": "^1.9.0",
"astro": "6.0.2",
2026-01-18 15:07:04 +06:00
"astro-auto-import": "^0.5.1",
"astro-swiper": "^2.2.1",
2025-01-05 15:55:16 +06:00
"date-fns": "^4.1.0",
2025-10-05 16:12:17 +06:00
"disqus-react": "^1.1.7",
2023-04-17 12:50:29 +06:00
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"marked": "^17.0.4",
2023-05-09 13:18:20 +06:00
"prop-types": "^15.8.1",
2026-02-25 09:07:01 +06:00
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
2023-05-09 13:18:20 +06:00
"remark-collapse": "^0.1.2",
2023-10-19 08:52:46 +06:00
"remark-toc": "^9.0.0",
2025-12-14 13:19:20 +06:00
"sharp": "^0.34.5",
2026-01-18 15:07:04 +06:00
"vite": "^7.3.1"
},
"devDependencies": {
2026-01-18 15:07:04 +06:00
"@tailwindcss/forms": "^0.5.11",
2025-10-05 16:12:17 +06:00
"@tailwindcss/typography": "^0.5.19",
2026-02-25 09:07:01 +06:00
"@tailwindcss/vite": "^4.2.1",
"@types/node": "25.4.0",
2026-02-25 09:07:01 +06:00
"@types/react": "19.2.14",
2025-11-20 10:09:11 +06:00
"@types/react-dom": "19.2.3",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
2026-02-25 09:07:01 +06:00
"prettier": "^3.8.1",
2024-07-31 12:17:20 +06:00
"prettier-plugin-astro": "^0.14.1",
2025-12-14 13:19:20 +06:00
"prettier-plugin-tailwindcss": "^0.7.2",
2026-02-25 09:07:01 +06:00
"tailwind-bootstrap-grid": "^7.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"wrangler": "^4.72.0"
2023-04-17 12:50:29 +06:00
}
}