-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 858 Bytes
/
package.json
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
{
"name": "whoevencarests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"dist-clean": "rm -rf dist && rm -rf node_modules",
"ts": "npx tsc",
"debug": "npx tsc && node inspect dist/app.js",
"clean-public": "rm -rf public/*.html",
"run": "npx tsc && node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-attrs": "^4.1.3",
"@types/node": "^20.10.1",
"@types/nunjucks": "^3.2.6",
"typescript": "^5.3.2"
},
"dependencies": {
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"markdown-it": "^13.0.2",
"markdown-it-attrs": "^4.1.6",
"nunjucks": "^3.2.4"
}
}