forked from xiaodoudou/PlexIPTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 KB
/
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
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
{
"name": "tayshTV",
"version": "0.1.0",
"description": "Emulate Silicondust device for Plex by providing IPTV streams and XMLTV data.",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"build": "npm run clean && npm run build-babel",
"build-babel": "babel -d ./build index.js -s",
"clean": "rm -rf ./build && mkdir ./build",
"start": "npm run build && node ./build/index.js",
"start:dev": "nodemon index.js --exec babel-node",
"heroku-postbuild": "cd frontend/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.2",
"args": "^4.0.0",
"axios": "^0.19.0",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"clean-stack": "^1.3.0",
"colors": "^1.2.4",
"cors": "^2.8.5",
"debug": "^3.1.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-sort-class-members": "^1.4.0",
"express": "^4.16.3",
"fast-xml-parser": "^3.12.16",
"filendir": "^1.0.1",
"install": "^0.11.0",
"lodash": "^4.17.10",
"log-rotate": "^0.2.8",
"md5": "^2.2.1",
"moment": "^2.24.0",
"nedb": "^1.8.0",
"node-ssdp": "^3.3.0",
"once": "^1.2.0",
"pkg": "^4.3.1",
"q": "^1.5.1",
"request": "2.27.0",
"sqlite": "^3.0.3",
"stack-trace": "0.0.10",
"supports-color": "^5.4.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"mongodb": "^3.2.7",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"sqlite3": "^4.0.9"
}
}