-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "reverse-proxy",
"private": true,
"version": "1.2.2",
"description": "NGINX reverse-proxy starter, tailor-made for our organisation",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint .",
"lint:md": "markdownlint *.md",
"lint:html": "htmlhint template.hbs",
"dev": "nodemon --exec 'node .' -e hbs,html --ignore 'html/'"
},
"author": {
"name": "Ozren Dabić",
"email": "ozren.dabic@usi.ch",
"url": "https://dabico.github.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seart-group/reverse-proxy.git"
},
"bugs": {
"url": "https://github.com/seart-group/reverse-proxy/issues"
},
"license": "MIT",
"homepage": "https://seart.si.usi.ch",
"keywords": [
"nginx",
"server",
"web server",
"proxy server",
"reverse proxy",
"configuration",
"error handling",
"custom pages",
"error pages",
"templating",
"handlebars",
"bootstrap"
],
"devDependencies": {
"@eslint/js": "^9.21.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"htmlhint": "^1.1.4",
"markdownlint-cli": "^0.44.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"handlebars": "^4.7.8",
"html-minifier-terser": "^7.2.0",
"jsonfile": "^6.1.0"
}
}