-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
executable file
·63 lines (63 loc) · 1.74 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
{
"name": "githubdocs",
"version": "0.0.9",
"description": "Easily build a searchable documentation Single Page Application (SPA) using markdown files in your Github Repo or local files.",
"private": false,
"scripts": {
"start": "node app.js",
"lint": "eslint ./"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mrvautin/githubdocs.git"
},
"keywords": [
"knowledge base",
"markdown",
"express",
"documentation",
"kb",
"faq",
"wiki",
"github",
"SPA",
"single page application",
"search"
],
"author": "Mark Moffat",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrvautin/githubdocs/issues"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.4.3",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"glob-promise": "^3.4.0",
"js-search": "^1.4.3",
"lodash": "^4.17.4",
"markdown-it": "^8.3.1",
"morgan": "^1.9.1",
"node-cron": "^2.0.3",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.15",
"sitemap": "^1.13.0",
"slugify": "^1.1.0",
"uglify-es": "^3.3.9",
"uglifycss": "0.0.27"
},
"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"
}
}