-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "tech-radar",
"version": "1.0.0",
"description": "A collaborative, Markdown-first tech radar with GitHub Pages integration",
"type": "module",
"private": true,
"scripts": {
"build": "tsx tools/generate.ts",
"preview": "http-server dist -p 8080 -c-1",
"validate": "tsx tools/validate.ts",
"new-blip": "tsx tools/new-blip.ts",
"update-status": "tsx tools/update-status.ts",
"import-history": "tsx tools/import-history.ts",
"changelog": "tsx tools/generate.ts --changelog-only",
"type-check": "tsc --noEmit"
},
"keywords": [
"tech-radar",
"thoughtworks",
"technology-radar",
"markdown",
"github-pages"
],
"author": "",
"license": "MIT",
"dependencies": {
"csv-parse": "^5.5.6",
"date-fns": "^3.6.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.5",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"marked": "^12.0.2",
"slugify": "^1.6.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@inquirer/prompts": "^5.3.8",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.10",
"commander": "^12.1.0",
"http-server": "^14.1.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}