-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.41 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
{
"name": "oblecto",
"version": "v0.2.9",
"description": "Oblecto is a frontend agnostic media butler bringing high performance high quality media streaming to the home ",
"author": "Robin <[email protected]>",
"repository": "robinp7720/Oblecto",
"license": "AGPL-3.0-or-later",
"private": false,
"bin": {
"oblecto": "./dist/bin/oblecto.js"
},
"files": [
"dist/",
"res/",
"Oblecto-Web/dist/",
"images/"
],
"scripts": {
"build:web": "cd Oblecto-Web; npm install --unsafe-perms --legacy-peer-deps; npm run build; cd ..;",
"build": "npx tsc --build; chmod +x ./dist/bin/oblecto.js",
"prepare": "npm run build && npm run build:web",
"start": "./node_modules/@babel/node/bin/babel-node.js src",
"debug": "./node_modules/@babel/node/bin/babel-node.js src --inspect=0.0.0.0",
"nodemon": "nodemon src --exec './node_modules/@babel/node/bin/babel-node.js src --inspect=0.0.0.0'",
"test:mocha": "mocha tests/mocha",
"test:startup": "scripts/test.sh",
"test": "npm run test:mocha"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^0.21.1",
"basic-ftp": "^5.0.3",
"bcrypt": "^5.0.1",
"fastest-levenshtein": "^1.0.12",
"fluent-ffmpeg": "^2.1.2",
"guessit-exec": "^0.0.1",
"guessit-wrapper": "^1.0.1",
"jsftp": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.30",
"mkdirp": "^1.0.4",
"moviedb-promise": "^3.1.8",
"mysql2": "^2.2.5",
"neo-blessed": "^0.2.0",
"node-rsa": "^1.1.1",
"node-tvdb": "^4.1.0",
"node-uuid": "^1.4.8",
"primus": "^7.3.5",
"recursive-readdir": "^2.2.2",
"restify": "^9.0.0-rc.3",
"restify-cors-middleware2": "^2.2.0",
"restify-errors": "^8.0.2",
"sequelize": "^6.6.2",
"sharp": "^0.29.1",
"socket.io": "^2.3.0",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2",
"which": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.13.15",
"@types/bcrypt": "^3.0.1",
"@types/restify-errors": "^4.3.3",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.3",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^32.3.3",
"expect.js": "^0.3.1",
"jshint": "^2.12.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"typescript": "^4.7.3"
}
}