1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 22:28:32 +01:00
developer-roadmap/package.json

33 lines
834 B
JSON
Raw Normal View History

2022-12-31 17:01:40 +04:00
{
2023-01-01 17:52:52 +04:00
"name": "roadmap.sh",
2022-12-31 17:01:40 +04:00
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
2023-01-03 18:30:56 +04:00
"dev:verbose": "astro dev --verbose",
2022-12-31 17:01:40 +04:00
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
2023-01-01 17:52:52 +04:00
"astro": "astro",
2023-01-04 20:48:10 +04:00
"deploy": "NODE_DEBUG=gh-pages gh-pages -d dist -t",
2023-01-01 17:52:52 +04:00
"sync-content": "sh ./bin/sync-content.sh"
2022-12-31 17:01:40 +04:00
},
"dependencies": {
2023-01-04 17:17:23 +04:00
"@astrojs/sitemap": "^1.0.0",
2022-12-31 17:01:40 +04:00
"@astrojs/tailwind": "^2.1.3",
"astro": "^1.8.0",
"node-html-parser": "^6.1.4",
2023-01-01 18:59:38 +04:00
"rehype-external-links": "^2.0.1",
2022-12-31 18:54:22 +04:00
"roadmap-renderer": "^1.0.1",
2022-12-31 17:01:40 +04:00
"tailwindcss": "^3.2.4"
2022-12-31 18:54:22 +04:00
},
"devDependencies": {
2022-12-31 20:37:14 +04:00
"@tailwindcss/typography": "^0.5.8",
2023-01-04 20:48:10 +04:00
"gh-pages": "^4.0.0",
2023-01-01 17:52:52 +04:00
"json-to-pretty-yaml": "^1.2.2",
2022-12-31 18:54:22 +04:00
"prettier": "^2.8.1",
"prettier-plugin-astro": "^0.7.0"
2022-12-31 17:01:40 +04:00
}
}