-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
90 lines (90 loc) · 2.23 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "openkb",
"version": "1.0.24",
"description": "openKB is an Open Source Nodejs Markdown based knowledge base/FAQ/Wiki app with powerful lunr search",
"private": false,
"scripts": {
"start": "node app.js",
"dbUpgrade": "node data/mongodbUpgrade.js",
"uglify": "node bin/uglify.js",
"lint": "eslint ./"
},
"dependencies": {
"async": "^2.6.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^3.4.1",
"compression": "^1.7.4",
"cookie-parser": "1.4.4",
"debug": "^2.6.7",
"express": "^4.17.1",
"express-handlebars": "^5.3.1",
"express-session": "^1.17.0",
"express-state": "^2.0.0",
"extract-zip": "^1.6.7",
"font-awesome": "^4.6.3",
"glob": "^5.0.14",
"hbs": "^4.1.0",
"i18n-2": "^0.6.3",
"jquery": "^3.4.1",
"jsonschema": "^1.2.5",
"jszip": "^3.7.0",
"junk": "^2.0.0",
"lodash": "^4.17.15",
"lunr": "^0.7.2",
"markdown-it": "^12.3.2",
"mime-types": "^2.1.26",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"mongodb": "^3.5.2",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nedb": "^1.8.0",
"nedb-session-store": "^1.1.2",
"remove-markdown": "^0.1.0",
"require-main-filename": "^1.0.1",
"rimraf": "^2.7.1",
"sanitize-html": "^2.3.2",
"simplemde": "^1.11.2",
"sitemap": "^1.8.1",
"speakingurl": "^10.0.0",
"uglify-js": "^3.7.6",
"uglifycss": "0.0.27",
"walk": "^2.3.14"
},
"main": "app.js",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-extra-rules": "0.0.0-development",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrvautin/openKB.git"
},
"keywords": [
"knowledge base",
"markdown",
"express",
"nedb",
"documentation",
"platform",
"nodejs",
"kb",
"documentation",
"faq",
"wiki",
"openkb",
"mongodb"
],
"author": "Mark Moffat",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrvautin/openKB/issues"
},
"homepage": "https://openkb.markmoffat.com"
}