-
Notifications
You must be signed in to change notification settings - Fork 447
/
package.json
100 lines (100 loc) · 2.7 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
100
{
"name": "raneto",
"version": "0.17.8",
"description": "Markdown powered Knowledgebase",
"authors": [
"Ryan Lelek <[email protected]>",
"Gilbert Pellegrom <[email protected]>"
],
"license": "MIT",
"keywords": [
"raneto",
"knowledgebase",
"markdown",
"static",
"site",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/ryanlelek/Raneto.git"
},
"bugs": "https://github.com/ryanlelek/Raneto/issues",
"contributors": [
"https://github.com/ryanlelek/Raneto/graphs/contributors"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/ryanlelek/Raneto/main/LICENSE"
}
],
"bin": "none",
"main": "./app/index.js",
"exports": "./app/index.js",
"type": "module",
"scripts": {
"start": "node server.js",
"test": "npm run unit&&npm run lint&&npm run prettier",
"unit": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest --coverage --detectOpenHandles",
"lint": "eslint app/**/*.js config/*.js test/*.js server.js",
"lint:fix": "eslint --fix app/**/*.js config/*.js test/*.js server.js",
"prettier": "prettier --check app/**/*.js config/*.js test/*.js server.js app/translations/*json",
"prettier:fix": "prettier --write app/**/*.js config/*.js test/*.js server.js app/translations/*json"
},
"engines": {
"node": ">=20.18.0",
"npm": ">=10.8.2"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@fixhq/markdown-toc": "2.0.0",
"@raneto/theme-default": "0.5.0",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"debug": "4.3.7",
"express": "4.21.1",
"express-session": "1.18.1",
"extend": "3.0.2",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"helmet": "8.0.0",
"hogan-express": "0.5.2",
"js-yaml": "4.1.0",
"lunr": "2.3.9",
"lunr-languages": "1.14.0",
"marked": "14.1.2",
"moment": "2.30.1",
"morgan": "1.10.0",
"node-fetch": "3.3.2",
"passport": "0.7.0",
"passport-google-oauth20": "2.0.0",
"sanitize-filename": "1.6.3",
"sitemap": "8.0.0",
"underscore": "1.13.7",
"underscore.string": "3.3.6",
"validator": "13.12.0"
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "29.7.0",
"prettier": "3.3.3",
"supertest": "7.0.0"
}
}