-
-
Notifications
You must be signed in to change notification settings - Fork 44.7k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "roadmap.sh",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Roadmap content for roadmap.sh",
"scripts": {
"format": "prettier --write .",
"sync:content-to-repo": "tsx ./scripts/sync-content-to-repo.ts",
"sync:repo-to-database": "tsx ./scripts/sync-repo-to-database.ts",
"cleanup:orphaned-content": "tsx ./scripts/cleanup-orphaned-content.ts"
},
"dependencies": {
"markdown-it": "^14.1.0",
"node-html-parser": "^7.0.1",
"turndown": "^7.2.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^26.1.1",
"@types/turndown": "^5.0.5",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}