-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1004 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
27
28
29
30
31
32
33
34
35
36
{
"name": "markdown-to-pdf",
"version": "1.0.0",
"description": "Convert Markdown to PDF",
"main": "src/server.js",
"author": {
"name": "Cristopher Martinez",
"email": "contact@cristopher.dev",
"url": "https://github.com/cristopher-dev"
},
"repository": {
"type": "git",
"url": "https://github.com/cristopher-dev/markdown-to-pdf"
},
"scripts": {
"convert": "node src/services/conversionService.js",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"format": "prettier --write \"**/*.{js,json,css,md,html}\"",
"format:check": "prettier --check \"**/*.{js,json,css,md,html}\""
},
"dependencies": {
"dotenv": "^16.5.0",
"express": "^4.18.2",
"highlight.js": "^11.9.0",
"markdown-it": "^14.0.0",
"markdown-it-footnote": "^4.0.0",
"multer": "^1.4.5-lts.1",
"puppeteer": "^22.0.0"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.5",
"nodemon": "^3.0.1",
"prettier": "^3.5.3"
}
}