-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1002 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
37
38
39
40
{
"name": "pocketdocs",
"version": "0.21.0",
"updated": "2026.07.06.0051",
"description": "Self-hosted documentation platform with versioning, powered by PocketBase",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"archiver": "^8.0.0",
"compression": "^1.8.1",
"cookie-parser": "1.4.7",
"dotenv": "17.4.2",
"ejs": "6.0.1",
"express": "^5.2.1",
"express-ejs-layouts": "2.5.1",
"express-rate-limit": "8.5.2",
"highlight.js": "11.11.1",
"marked": "18.0.5",
"marked-highlight": "2.2.4",
"pocketbase": "^0.27.0",
"sanitize-html": "2.17.5",
"winston": "3.19.0",
"zod": "4.4.3"
},
"devDependencies": {
"eslint": "^10.6.0",
"nodemon": "3.1.14",
"prettier": "3.9.4"
}
}