-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "markswift",
"version": "1.0.0",
"description": "Backend server for MarkSwift, a batch markdown to PDF converter.",
"main": "server/server.js",
"scripts": {
"start": "npm run build:css && node server/server.js",
"start_docker": "node server/server.js",
"dev": "concurrently \"npm run build:css -- --watch\" \"nodemon server/server.js\"",
"build:css": "tailwindcss -i ./public/css/input.css -o ./public/css/tailwind.css"
},
"keywords": [
"markdown",
"pdf",
"batch",
"converter",
"web"
],
"author": "Cline",
"license": "MIT",
"dependencies": {
"archiver": "^5.3.1",
"dompurify": "^3.0.6",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"fs-extra": "^11.1.1",
"highlight.js": "^11.11.1",
"jsdom": "^22.1.0",
"marked": "^9.1.6",
"markswift": "file:",
"multer": "^1.4.5-lts.1",
"puppeteer": "^23.11.1",
"uuid": "^11.1.0",
"ws": "^8.18.2"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5"
}
}