forked from mrvautin/openKB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.05 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
{
"name": "openkb",
"version": "1.0.23",
"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",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"uglify": "node bin/uglify.js"
},
"dependencies": {
"async": "^2.0.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"compression": "^1.6.2",
"cookie-parser": "~1.3.3",
"debug": "~2.6.7",
"express": "~4.16.0",
"express-handlebars": "^3.0.0",
"express-session": "^1.14.1",
"express-state": "^1.4.0",
"extract-zip": "^1.5.0",
"font-awesome": "^4.6.3",
"glob": "^5.0.14",
"hbs": "~4.0.1",
"i18n-2": "^0.6.3",
"jquery": "^3.1.0",
"jsonschema": "^1.1.0",
"jszip": "^2.6.1",
"junk": "^2.0.0",
"lodash": "^4.17.2",
"lunr": "^0.7.2",
"markdown-it": "^7.0.1",
"mime-types": "^2.1.13",
"mkdirp": "^0.5.1",
"moment": "^2.15.0",
"mongodb": "^2.2.9",
"morgan": "~1.9.1",
"multer": "^1.2.0",
"nedb": "^1.8.0",
"nedb-session-store": "^1.1.1",
"remove-markdown": "^0.1.0",
"require-main-filename": "^1.0.1",
"rimraf": "^2.5.4",
"sanitize-html": "^1.14.1",
"simplemde": "^1.11.2",
"sitemap": "^1.8.1",
"snyk": "^1.47.1",
"speakingurl": "^10.0.0",
"uglify-js": "^3.0.11",
"uglifycss": "0.0.27",
"walk": "^2.3.9"
},
"main": "app.js",
"devDependencies": {},
"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",
"snyk": true
}