Bumps [axios](https://github.com/axios/axios) from 0.19.2 to 0.21.1. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v0.19.2...v0.21.1) Signed-off-by: dependabot[bot] <support@github.com>
54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
{
|
|
"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": {
|
|
"JSONStream": "1.0.5",
|
|
"angular": "^1.7.9",
|
|
"angular-router-browserify": "0.0.2",
|
|
"angular-vs-repeat": "2.0.13",
|
|
"axios": "^0.21.1",
|
|
"body-parser": "^1.19.0",
|
|
"diskdb": "^0.1.17",
|
|
"express": "^4.17.1",
|
|
"express-fileupload": "^1.2.1",
|
|
"node-graceful-shutdown": "1.1.0",
|
|
"node-ssdp": "^4.0.0",
|
|
"random-js": "2.1.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"
|
|
]
|
|
}
|
|
}
|