nextcloud-app-radio/package.json

95 lines
2.8 KiB
JSON
Raw Normal View History

2020-10-08 21:13:33 +00:00
{
2020-10-12 15:29:36 +00:00
"name": "radio",
"description": "Listen to your favorite radio stations in Nextcloud",
"version": "1.0.3",
2020-10-12 15:29:36 +00:00
"author": "Jonas Heinrich <onny@project-insanity.org>",
"contributors": [
"Jonas Heinrich <onny@project-insanity.org>"
],
"keywords": [
"nextcloud",
"radio"
],
"bugs": {
"url": "https://git.project-insanity.org/onny/nextcloud-app-radio/-/issues"
},
"repository": {
"url": "https://git.project-insanity.org/onny/nextcloud-app-radio",
"type": "git"
},
"homepage": "https://git.project-insanity.org/onny/nextcloud-app-radio",
2020-11-24 14:16:53 +00:00
"license": "agpl",
2020-10-12 15:29:36 +00:00
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix"
},
"dependencies": {
"@nextcloud/auth": "^1.3.0",
2021-01-15 10:40:04 +00:00
"@nextcloud/axios": "^1.6.0",
2020-11-19 10:06:44 +00:00
"@nextcloud/dialogs": "^3.1.1",
2020-10-12 15:29:36 +00:00
"@nextcloud/l10n": "^1.4.1",
2020-11-18 13:21:33 +00:00
"@nextcloud/moment": "^1.1.1",
2020-10-17 16:11:04 +00:00
"@nextcloud/router": "^1.2.0",
2020-11-19 10:06:44 +00:00
"@nextcloud/vue": "^2.9.0",
2021-03-06 15:26:59 +00:00
"@nextcloud/vue-dashboard": "^1.1.0",
"autoprefixer": "^9.8.6",
"howler": "^2.2.1",
2021-01-15 10:40:04 +00:00
"music-metadata": "^7.6.4",
2021-03-06 15:26:59 +00:00
"postcss-loader": "^4.2.0",
2020-11-19 10:06:44 +00:00
"style-loader": "^2.0.0",
2020-10-17 16:11:04 +00:00
"vue": "^2.6.12",
2021-01-15 10:40:04 +00:00
"vue-blurhash": "^0.1.4",
2020-11-19 09:16:00 +00:00
"vue-clipboard2": "^0.3.1",
2021-01-15 10:40:04 +00:00
"vue-resize-observer": "^1.0.37",
2021-03-06 15:26:59 +00:00
"vue-router": "^3.5.1",
2021-01-15 10:40:04 +00:00
"vuex": "^3.6.0"
2020-10-12 15:29:36 +00:00
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
2021-01-15 10:40:04 +00:00
"@babel/core": "^7.12.10",
2020-10-12 15:29:36 +00:00
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
2021-01-15 10:40:04 +00:00
"@babel/preset-env": "^7.12.11",
2020-10-12 15:29:36 +00:00
"@nextcloud/browserslist-config": "^1.0.0",
"@nextcloud/eslint-config": "^2.2.0",
"@nextcloud/eslint-plugin": "^1.5.0",
2020-11-19 10:06:44 +00:00
"@nextcloud/webpack-vue-config": "^1.4.1",
2021-01-15 10:40:04 +00:00
"@vue/test-utils": "^1.1.2",
2020-10-12 15:29:36 +00:00
"babel-eslint": "^10.1.0",
2021-01-15 10:40:04 +00:00
"babel-loader": "^8.2.2",
2020-10-12 15:29:36 +00:00
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
2020-11-19 10:06:44 +00:00
"eslint-plugin-html": "^6.1.1",
2020-10-12 15:29:36 +00:00
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
2021-03-06 15:26:59 +00:00
"eslint-plugin-promise": "^4.3.1",
2020-11-19 10:06:44 +00:00
"eslint-plugin-standard": "^4.1.0",
2020-10-12 15:29:36 +00:00
"eslint-plugin-vue": "^6.2.2",
2020-11-19 10:06:44 +00:00
"file-loader": "^6.2.0",
2020-10-12 15:29:36 +00:00
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
2021-03-06 15:26:59 +00:00
"stylelint": "^13.11.0",
2020-10-12 15:29:36 +00:00
"stylelint-config-recommended-scss": "^4.2.0",
2021-03-06 15:26:59 +00:00
"stylelint-scss": "^3.19.0",
2020-11-19 10:06:44 +00:00
"stylelint-webpack-plugin": "^2.1.1",
2021-01-15 10:40:04 +00:00
"vue-loader": "^15.9.6",
2020-10-12 15:29:36 +00:00
"vue-template-compiler": "^2.6.12",
2021-01-15 10:40:04 +00:00
"webpack": "^4.46.0",
2020-10-12 15:29:36 +00:00
"webpack-cli": "^3.3.12",
2021-01-15 10:40:04 +00:00
"webpack-merge": "^5.7.3"
2020-10-12 15:29:36 +00:00
}
2020-10-08 21:13:33 +00:00
}