1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 06:08:36 +01:00
developer-roadmap/package.json

41 lines
1.1 KiB
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",
"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-09 13:59:34 +04:00
"compress:jsons": "node bin/compress-jsons.cjs",
"upgrade": "ncu -u",
2023-01-10 03:12:25 +04:00
"roadmap-links": "node bin/roadmap-links.cjs",
"roadmap-content": "node bin/roadmap-content.cjs",
2023-01-24 18:36:14 +04:00
"best-practice-content": "node bin/best-practice-content.cjs",
"test:e2e": "playwright test"
2022-12-31 17:01:40 +04:00
},
"dependencies": {
"@astrojs/sitemap": "^1.1.0",
2023-02-09 09:13:32 +00:00
"@astrojs/tailwind": "^3.0.1",
"astro": "^2.0.15",
"astro-compress": "^1.1.34",
"node-html-parser": "^6.1.5",
"npm-check-updates": "^16.7.9",
2023-01-01 18:59:38 +04:00
"rehype-external-links": "^2.0.1",
"roadmap-renderer": "^1.0.4",
"tailwindcss": "^3.2.7"
2022-12-31 18:54:22 +04:00
},
"devDependencies": {
"@playwright/test": "^1.31.1",
2023-01-15 00:04:49 +00:00
"@tailwindcss/typography": "^0.5.9",
"gh-pages": "^5.0.0",
2023-01-01 17:52:52 +04:00
"json-to-pretty-yaml": "^1.2.2",
"markdown-it": "^13.0.1",
2023-02-09 09:13:32 +00:00
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0"
2022-12-31 17:01:40 +04:00
}
}