forked from vexorian/dizquetv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.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
{
"name": "dizquetv",
"version": "1.0.0",
"description": "Create LiveTV channels from your Plex media",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"build": "browserify ./web/app.js -o ./web/public/bundle.js",
"dev-client": "watchify ./web/app.js -o ./web/public/bundle.js",
"dev-server": "nodemon index.js --ignore ./web/ --ignore ./db/ --ignore ./xmltv.xml",
"compile": "babel index.js -d dist && babel src -d dist/src",
"package": "sh ./make_dist.sh",
"clean": "del-cli --force ./bin ./dist ./.dizquetv ./web/public/bundle.js"
},
"author": "Dan Ferguson",
"license": "ISC",
"dependencies": {
"angular": "^1.7.9",
"angular-router-browserify": "0.0.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"diskdb": "^0.1.17",
"express": "^4.17.1",
"node-ssdp": "^4.0.0",
"request": "^2.88.2",
"uuid": "^8.0.0",
"xml-writer": "^1.7.0"
},
"bin": "dist/index.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"browserify": "^16.5.1",
"copyfiles": "^2.2.0",
"del-cli": "^3.0.0",
"nodemon": "^2.0.3",
"watchify": "^3.11.1",
"nexe" : "^3.3.7"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}