forked from ryanlelek/Raneto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.47 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
91
92
93
94
95
{
"name": "raneto",
"version": "0.16.5",
"description": "Markdown powered Knowledgebase",
"author": "Gilbert Pellegrom <[email protected]>",
"license": "MIT",
"keywords": [
"raneto",
"knowledgebase",
"markdown",
"static",
"site",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/gilbitron/Raneto.git"
},
"bugs": "https://github.com/gilbitron/Raneto/issues",
"contributors": [
"https://github.com/gilbitron/Raneto/graphs/contributors"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/gilbitron/Raneto/master/LICENSE"
}
],
"bin": "./bin/raneto",
"main": "./app/index.js",
"scripts": {
"start": "DEBUG=raneto node example/server.js",
"start_win": "set DEBUG=raneto&&node example/server.js",
"test": "npm run lint && mocha --reporter spec test/*.js",
"gulp": "gulp",
"lint": "./node_modules/.bin/eslint bin/* app/**/*.js example/**/*.js test/*.js gulpfile.js",
"postinstall": "gulp default"
},
"engines": {
"node": ">=10.22.1"
},
"dependencies": {
"body-parser": "1.19.0",
"bootstrap": "4.5.3",
"bootstrap-rtl": "3.3.4",
"commander": "6.2.1",
"cookie-parser": "1.4.5",
"debug": "4.3.1",
"express": "4.17.1",
"express-session": "1.17.1",
"extend": "3.0.2",
"fitvids": "2.1.1",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"highlightjs": "9.16.2",
"hogan-express": "0.5.2",
"jquery": "3.5.1",
"jquery-backstretch": "2.1.18",
"js-yaml": "3.14.1",
"lunr": "2.3.9",
"lunr-languages": "1.4.0",
"markdown-it": "12.0.4",
"markdown-toc": "1.2.0",
"marked": "1.2.7",
"masonry-layout": "4.2.2",
"moment": "2.29.1",
"morgan": "1.10.0",
"node-fetch": "2.6.1",
"passport": "0.4.1",
"passport-google-oauth20": "2.0.0",
"popper.js": "1.16.1",
"sanitize-filename": "1.6.3",
"serve-favicon": "2.5.0",
"sitemap": "6.3.5",
"sweetalert2": "10.12.6",
"underscore": "1.12.0",
"underscore.string": "3.3.5",
"validator": "13.5.2"
},
"devDependencies": {
"always-tail": "0.2.0",
"chai": "4.2.0",
"eslint": "7.16.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "5.0.0",
"gulp": "4.0.2",
"gulp-shell": "0.8.0",
"mocha": "8.2.1",
"pm2": "4.5.1",
"supertest": "6.0.1"
}
}