-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 866 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 866 Bytes
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
{
"name": "cloudflare-tunnel-manager",
"version": "1.0.0",
"description": "Cloudflare Tunnel Management System",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop cloudflare-tunnel-manager",
"pm2:restart": "pm2 restart cloudflare-tunnel-manager",
"pm2:logs": "pm2 logs cloudflare-tunnel-manager",
"pm2:status": "pm2 status",
"pm2:startup": "pm2 startup",
"pm2:save": "pm2 save"
},
"keywords": ["cloudflare", "tunnel", "management"],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"body-parser": "^1.20.2",
"axios": "^1.6.0",
"node-fetch": "^2.7.0",
"express-session": "^1.17.3"
},
"devDependencies": {
"nodemon": "^3.0.1",
"pm2": "^5.3.0"
}
}