-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
33 lines (33 loc) · 860 Bytes
/
package.json
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
{
"name": "iptv-restream",
"version": "1.5.0",
"private": true,
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist/* && rm -rf node_modules",
"lint": "eslint . --ext .ts --max-warnings 0"
},
"dependencies": {
"debug": "^4.3.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"html-escaper": "^3.0.3",
"morgan": "^1.10.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/html-escaper": "^3.0.2",
"@types/http-errors": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.9.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"typescript": "^5.2.2"
}
}