This repository was archived by the owner on Aug 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.26 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
{
"name": "net.fimastgd.forevercore",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"boot": "ts-node -r tsconfig-paths/register server.ts --time=def --versionSwitcher=basic",
"boot-root": "sudo chmod 777 -R ./ && /home/user1/.bun/bin/bun run server.ts --time=def",
"boot-bun": "/home/user1/.bun/bin/bun run server.ts --time=def",
"dev:panel": "cd panelui && npm run dev",
"dev:panel:bun": "cd panelui && bun run dev",
"build:panel": "cd panelui && npm run build",
"build:panel:bun": "cd panelui && bun run build",
"dev:full": "concurrently \"npm run boot\" \"npm run dev:panel\"",
"dev:install": "npm install && cd panelui && npm install",
"build:core": "tsc && echo \"Pre-production build: success\""
},
"keywords": [],
"author": "FimastGD, Syvarinth",
"license": "ISC",
"description": "ForeverHost GDPS Core",
"dependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.13.4",
"@types/redis": "^4.0.10",
"ansi-colors": "^4.1.3",
"ansi-to-html": "^0.7.2",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.7",
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"bytenode": "^1.5.7",
"colorside": "^1.2.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"defuse": "^0.3.1",
"ejs": "^3.1.10",
"express": "^5.1.0",
"g4f": "^1.4.6",
"get-video-duration": "^4.1.0",
"http": "^0.0.1-security",
"http-proxy-middleware": "^3.0.3",
"ioredis": "^5.6.1",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"mock-aws-s3": "^4.0.2",
"mysql2": "^3.11.3",
"nock": "^13.5.6",
"pm2": "^6.0.8",
"qs": "^6.13.0",
"redis": "^5.5.6",
"socket.io": "^4.8.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"type-fest": "^4.41.0",
"youtube-dl-exec": "^3.0.10",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/qs": "^6.9.17",
"concurrently": "^8.2.2",
"html-loader": "^5.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"trustedDependencies": [
"aws-sdk",
"es5-ext",
"youtube-dl-exec"
]
}