-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.66 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.66 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
103
104
105
106
{
"name": "raneto",
"version": "0.18.1",
"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 .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"engines": {
"node": ">=23.14.0",
"npm": ">=11.9.0"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverageFrom": [
"app/**/*.{js,mjs}"
]
},
"dependencies": {
"@fixhq/markdown-toc": "2.0.0",
"@raneto/theme-default": "0.9.0",
"body-parser": "2.2.2",
"cookie-parser": "1.4.7",
"debug": "4.4.3",
"express": "5.2.1",
"express-rate-limit": "8.3.1",
"express-session": "1.19.0",
"fs-extra": "11.3.4",
"glob": "13.0.6",
"helmet": "8.1.0",
"js-yaml": "4.1.1",
"lodash": "4.17.23",
"lunr": "2.3.9",
"lunr-languages": "1.14.0",
"marked": "17.0.4",
"marked-gfm-heading-id": "4.1.3",
"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.1",
"session-file-store": "1.5.0",
"sitemap": "9.0.1",
"validator": "13.15.26"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.4.0",
"jest": "30.3.0",
"prettier": "3.8.1",
"supertest": "7.2.2"
}
}