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

70 lines
2.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",
2023-11-09 20:11:33 +00:00
"version": "1.0.0",
2022-12-31 17:01:40 +04:00
"private": true,
"scripts": {
2023-08-31 23:17:51 +01:00
"dev": "astro dev --port 3000",
2022-12-31 17:01:40 +04:00
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
2023-03-30 01:23:01 +01:00
"format": "prettier --write .",
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-05-08 22:16:27 +01:00
"compress:jsons": "node scripts/compress-jsons.cjs",
"upgrade": "ncu -u",
2023-05-08 22:16:27 +01:00
"roadmap-links": "node scripts/roadmap-links.cjs",
"roadmap-dirs": "node scripts/roadmap-dirs.cjs",
"roadmap-content": "node scripts/roadmap-content.cjs",
"generate-renderer": "sh scripts/generate-renderer.sh",
2023-05-08 22:16:27 +01:00
"best-practice-dirs": "node scripts/best-practice-dirs.cjs",
"best-practice-content": "node scripts/best-practice-content.cjs",
"test:e2e": "playwright test"
2022-12-31 17:01:40 +04:00
},
"dependencies": {
2024-02-15 18:12:34 +00:00
"@astrojs/react": "^3.0.10",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/tailwind": "^5.1.0",
2024-02-15 18:12:34 +00:00
"@fingerprintjs/fingerprintjs": "^4.2.2",
"@nanostores/react": "^0.7.1",
2024-02-19 14:30:11 +00:00
"@types/react": "^18.2.56",
2024-02-15 18:12:34 +00:00
"@types/react-dom": "^18.2.19",
"astro": "^4.4.0",
"astro-compress": "^2.2.10",
"clsx": "^2.1.0",
2024-02-15 18:12:34 +00:00
"dracula-prism": "^2.1.16",
"jose": "^5.2.2",
2023-05-20 02:10:20 +01:00
"js-cookie": "^3.0.5",
2024-02-19 14:30:11 +00:00
"lucide-react": "^0.334.0",
2024-02-15 18:12:34 +00:00
"nanoid": "^5.0.5",
2023-12-09 20:08:12 +00:00
"nanostores": "^0.9.5",
"node-html-parser": "^6.1.12",
2024-02-15 18:12:34 +00:00
"npm-check-updates": "^16.14.15",
"prismjs": "^1.29.0",
"react": "^18.2.0",
2023-09-01 20:07:17 +01:00
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
2024-02-15 18:12:34 +00:00
"reactflow": "^11.10.4",
"rehype-external-links": "^3.0.0",
2023-05-20 02:10:20 +01:00
"roadmap-renderer": "^1.0.6",
2023-07-20 19:24:34 +01:00
"slugify": "^1.6.6",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
2024-02-19 14:30:11 +00:00
"zustand": "^4.5.1"
2022-12-31 18:54:22 +04:00
},
"devDependencies": {
2024-02-15 18:12:34 +00:00
"@playwright/test": "^1.41.2",
"@tailwindcss/typography": "^0.5.10",
2023-11-09 20:36:50 +00:00
"@types/js-cookie": "^3.0.6",
"@types/prismjs": "^1.26.3",
2023-04-26 13:47:19 +01:00
"csv-parser": "^3.0.0",
2023-12-24 16:20:12 +05:00
"gh-pages": "^6.1.1",
2023-03-01 02:19:40 +00:00
"js-yaml": "^4.1.0",
2023-12-09 20:08:12 +00:00
"markdown-it": "^14.0.0",
2024-02-15 18:12:34 +00:00
"openai": "^4.28.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11"
2022-12-31 17:01:40 +04:00
}
}