forked from ryanlelek/Raneto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.73 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
96
97
98
99
{
"name": "cslabs-wiki-apprentissage",
"version": "0.0.1",
"description": "Raneto powered Wiki",
"author": "CSLabs Training Manager <[email protected]>",
"license": "MIT",
"keywords": [
"raneto",
"knowledgebase",
"markdown",
"static",
"site",
"generator",
"wiki",
"cslabs"
],
"repository": {
"type": "git",
"url": "https://github.com/CSLabsNamur/Wiki-Apprentissage.git"
},
"bugs": "https://github.com/CSLabsNamur/Wiki-Apprentissage/issues",
"contributors": [
"https://github.com/CSLabsNamur/Wiki-Apprentissage/graphs/contributors"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/CSLabsNamur/Wiki-Apprentissage/master/LICENSE"
}
],
"bin": "./bin/raneto",
"main": "./app/index.js",
"scripts": {
"start": "DEBUG=raneto node server/start.js",
"start:win_cmd": "set DEBUG=raneto&&node server/start.js",
"start:powershell": "$Env:DEBUG=\"raneto\"&&node server/start.js",
"start:production": "node server/start.js",
"test": "npm run lint && mocha --reporter spec test/*.js",
"lint": "./node_modules/.bin/eslint bin/* app/**/*.js server/**/*.js test/*.js gulpfile.js",
"postinstall": "gulp default"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"bootstrap-rtl": "^3.3.4",
"commander": "^6.2.1",
"cookie-parser": "^1.4.5",
"debug": "^4.3.1",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"extend": "^3.0.2",
"fitvids": "^2.1.1",
"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"highlightjs": "^9.16.2",
"hogan-express": "^0.5.2",
"jquery": "^3.6.0",
"jquery-backstretch": "^2.1.18",
"js-yaml": "^3.14.1",
"lunr": "^2.3.9",
"lunr-languages": "^1.4.0",
"markdown-it": "^11.0.1",
"markdown-toc": "^1.2.0",
"marked": "^1.2.9",
"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.4.0",
"sweetalert2": "^8.19.0",
"underscore": "^1.13.1",
"underscore.string": "^3.3.5",
"validator": "^13.6.0"
},
"devDependencies": {
"always-tail": "^0.2.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"mocha": "^8.4.0",
"pm2": "^4.5.6",
"supertest": "^5.0.0"
}
}