This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nutv",
"version": "1.1.2",
"author": "Martin Purcell <martin@silico.media> (https://in.silico.media)",
"description": "NodeTV - TV Library Manager",
"private": true,
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/greebowarrior/nodetv.git"
},
"bin": {
"nutv": "./server.js"
},
"bugs": {
"url": "https://github.com/greebowarrior/nodetv/issues"
},
"scripts": {
"start": "node server.js",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"ncu": "ncu -u && npm install"
},
"main": "./server.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^4.4.1",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"dotenv-extended": "^2.9.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"glob-promise": "^4.2.0",
"helmet": "^4.6.0",
"html-entities": "^2.3.2",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.31",
"mongoose": "^5.12.13",
"mongoose-long": "^0.4.0",
"mongoose-unique-validator": "^2.0.3",
"node-schedule": "^2.0.0",
"node-ssdp": "^4.0.1",
"nodetv-helpers": "file:server/local_modules/nodetv-helpers",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-token": "^0.2.0",
"passport-trakt": "^1.0.4",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"request-promise-cache": "^2.0.1",
"rss-parser": "^3.12.0",
"sharp": "^0.28.3",
"socket.io": "^4.1.2",
"syserrno": "^1.0.1",
"trakt.tv": "^8.0.0",
"trakt.tv-artwork": "file:server/local_modules/trakt.tv-artwork",
"trakt.tv-matcher": "^8.0.2",
"trakt.tv-ondeck": "^8.0.1",
"transmission": "^0.4.10",
"upnp-device-client": "^1.0.2",
"upnp-mediarenderer-client": "^1.4.0",
"uuid": "^8.3.2",
"zero-fill": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.1.0",
"nyc": "^15.1.0"
}
}