forked from shuttlenetwork/shuttle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "shuttle",
"version": "3.0.0",
"description": "Experience the global internet using Shuttle, the swiftest and most uncluttered proxy solution. Relish a heightened level of privacy during your online sessions, free from censorship.",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"prod": "pm2 start ecosystem.config.cjs --env production",
"prod-old": "pm2 start index.js --name shuttle -f",
"logs": "pm2 logs shuttle",
"stop": "pm2 stop shuttle",
"restart": "pm2 restart shuttle",
"reload": "pm2 reload shuttle",
"monit": "pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuttlenetwork/shuttle"
},
"keywords": [
"proxy"
],
"author": "",
"license": " GPL-3.0-or-later",
"homepage": "https://shuttleproxy.com",
"dependencies": {
"@nebula-services/dynamic": "^0.7.2-patch.2",
"@titaniumnetwork-dev/ultraviolet": "^2.0.0",
"@tomphttp/bare-server-node": "^2.0.1",
"compression": "^1.7.4",
"ejs": "^3.1.9",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.5",
"pm2": "^5.3.1",
"yarn": "^1.22.22"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}