nextcloud-app-radio/package.json

87 lines
2.5 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": "A simple Nextcloud app using vue-components",
"version": "1.0.0",
"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",
"license": "mit",
"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": {
2020-10-20 13:16:20 +00:00
"@nextcloud/axios": "^1.4.0",
"@nextcloud/dialogs": "^3.0.0",
2020-10-12 15:29:36 +00:00
"@nextcloud/l10n": "^1.4.1",
2020-10-17 16:11:04 +00:00
"@nextcloud/router": "^1.2.0",
2020-10-12 15:29:36 +00:00
"@nextcloud/vue": "^2.7.0",
"howler": "^2.2.1",
2020-10-22 11:53:40 +00:00
"music-metadata": "^7.4.1",
2020-10-17 16:11:04 +00:00
"vue": "^2.6.12",
2020-10-23 20:18:05 +00:00
"vue-blurhash": "^0.1.2",
2020-10-23 15:49:24 +00:00
"vue-router": "^3.4.7",
"vuex": "^3.5.1"
2020-10-12 15:29:36 +00:00
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.5",
"@nextcloud/browserslist-config": "^1.0.0",
"@nextcloud/eslint-config": "^2.2.0",
"@nextcloud/eslint-plugin": "^1.5.0",
"@nextcloud/webpack-vue-config": "^1.1.0",
"@vue/test-utils": "^1.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"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-10-14 10:51:17 +00:00
"eslint-plugin-html": "^6.1.0",
2020-10-12 15:29:36 +00:00
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
2020-10-17 18:06:57 +00:00
"file-loader": "^6.1.1",
2020-10-12 15:29:36 +00:00
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.2.0"
}
2020-10-08 21:13:33 +00:00
}