-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "node-proxy-manager",
"fullname": "Node Proxy Manager",
"version": "0.3.4",
"description": "An NodeJS alternative to Nginx Proxy Manager that is hopefully more reliable.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run dev:run",
"dev:run": "nodemon index.js -e .ejs,.mustache,.js,.html,.json,.jsonc --ignore logs/ --ignore certs/ --ignore node_modules/ --ignore .git/ --ignore .vscode/ --ignore .idea/ --ignore .DS_Store/ --ignore .gitignore",
"dev:cfg": "cp config.json config.example.json",
"migrate": "node ./migration.js"
},
"keywords": [],
"author": "Hammer1279",
"license": "MIT",
"dependencies": {
"acme-http-01-standalone": "^3.0.5",
"body-parser": "^1.20.3",
"cidr-tools": "^11.0.3",
"consolidate": "^1.0.4",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"express-handlebars": "^8.0.1",
"greenlock": "^4.0.4",
"http-proxy": "^1.18.1",
"jsonc-parser": "^3.3.1",
"morgan": "^1.10.0",
"mustache": "^4.2.0",
"node-cache": "^5.1.2",
"node-forge": "^1.3.1",
"node-proxy-manager": "file:",
"superagent": "^10.2.0",
"ws": "^8.18.1"
},
"devDependencies": {
"mocha": "^11.1.0",
"nodemon": "^3.1.9"
},
"type": "module"
}