-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.56 KB
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
101
102
{
"name": "raneto",
"version": "0.18.0",
"description": "Markdown powered Knowledgebase",
"authors": [
"Ryan Lelek <ryanlelek@gmail.com>",
"Gilbert Pellegrom <gilbert@pellegrom.me>"
],
"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 .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"engines": {
"node": ">=22.19.0",
"npm": ">=10.9.3"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@fixhq/markdown-toc": "2.0.0",
"@raneto/theme-default": "0.8.2",
"body-parser": "2.2.0",
"cookie-parser": "1.4.7",
"debug": "4.4.3",
"express": "5.1.0",
"express-session": "1.18.2",
"fs-extra": "11.3.1",
"glob": "11.0.3",
"helmet": "8.1.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"lunr": "2.3.9",
"lunr-languages": "1.14.0",
"marked": "16.3.0",
"marked-gfm-heading-id": "4.1.2",
"moment": "2.30.1",
"morgan": "1.10.1",
"mustache-express": "1.3.2",
"passport": "0.7.0",
"passport-google-oauth20": "2.0.0",
"sanitize-filename": "1.6.3",
"sanitize-html": "2.17.0",
"session-file-store": "1.5.0",
"sitemap": "8.0.0",
"validator": "13.15.15"
},
"devDependencies": {
"@eslint/js": "9.35.0",
"cross-env": "10.0.0",
"eslint": "9.35.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unused-imports": "4.2.0",
"globals": "16.4.0",
"jest": "30.1.3",
"prettier": "3.6.2",
"supertest": "7.1.4"
}
}