-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "iptv-manager",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "node src/server.js",
"build": "node -e \"console.log('No build step required for IPTV-Manager')\"",
"lint": "eslint src/",
"test": "vitest run --no-file-parallelism",
"test:watch": "vitest --no-file-parallelism",
"test:playwright:smoke": "node scripts/playwright_smoke.mjs"
},
"dependencies": {
"@iptv/xtream-api": "^1.2.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.10.0",
"body-parser": "^2.2.2",
"bootstrap": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"esbuild": "^0.28.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"ffmpeg-static": "^5.3.0",
"flag-icons": "^7.5.0",
"fluent-ffmpeg": "^2.1.3",
"geoip-lite": "2.0.2",
"helmet": "^8.2.0",
"iso-639-1": "^3.1.5",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.11.0",
"multer": "^2.1.1",
"node-fetch": "^3.3.2",
"node-xml-stream": "^1.0.2",
"otplib": "^13.4.1",
"qrcode": "^1.5.4",
"redis": "^6.0.0",
"sax": "^1.6.0",
"sortablejs": "^1.15.0",
"systeminformation": "^5.31.7"
},
"devDependencies": {
"eslint": "^10.4.1",
"globals": "^17.3.0",
"playwright": "^1.60.0",
"supertest": "^7.2.2",
"vitest": "^4.1.8"
},
"overrides": {
"vite": "7.3.3"
}
}