funkwhale/front/package.json

114 wiersze
2.7 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "front",
"version": "0.1.0",
"private": true,
"description": "Funkwhale front-end",
"author": "Eliot Berriot <contact@eliotberriot.com>",
"scripts": {
"serve": "vue-cli-service serve --port ${VUE_PORT:-8000} --host ${VUE_HOST:-0.0.0.0}",
"build": "scripts/i18n-compile.sh && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"i18n-compile": "scripts/i18n-compile.sh",
"i18n-extract": "scripts/i18n-extract.sh"
},
"dependencies": {
"axios": "^0.18.0",
2020-02-25 14:42:44 +00:00
"core-js": "^3.6.4",
"diff": "^4.0.1",
2018-02-25 12:05:01 +00:00
"django-channels": "^1.1.6",
"fomantic-ui-css": "^2.8.3",
"howler": "^2.0.14",
"js-logger": "^1.4.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"qs": "^6.7.0",
"register-service-worker": "^1.6.2",
2019-08-28 09:31:57 +00:00
"sanitize-html": "^1.20.1",
2018-02-22 21:02:19 +00:00
"showdown": "^1.8.6",
2020-03-26 15:18:37 +00:00
"text-clipper": "^1.3.0",
"vue": "^2.6.10",
2018-07-29 10:11:35 +00:00
"vue-gettext": "^2.1.0",
"vue-lazyload": "^1.2.6",
"vue-plyr": "^5.0.4",
"vue-router": "^3.0.1",
"vue-upload-component": "^2.8.11",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4",
2018-02-15 21:31:14 +00:00
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
2020-02-25 14:42:44 +00:00
"@vue/cli-plugin-babel": "~4.2.2",
"@vue/cli-plugin-eslint": "~4.2.2",
"@vue/cli-plugin-pwa": "~4.2.2",
"@vue/cli-plugin-unit-mocha": "~4.2.2",
"@vue/cli-service": "~4.2.2",
"@vue/test-utils": "^1.0.0-beta.20",
2020-02-25 14:42:44 +00:00
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"easygettext": "^2.6.3",
2020-02-25 14:42:44 +00:00
"eslint": "^5.16.0",
"eslint-plugin-html": "^4.0.5",
2020-02-25 14:42:44 +00:00
"eslint-plugin-vue": "^6.1.2",
2019-09-14 13:08:49 +00:00
"glob-all": "^3.1.0",
"mocha": "^5.2.0",
"moxios": "^0.4.0",
"node-sass": "^4.9.3",
"preload-webpack-plugin": "^3.0.0-beta.4",
2019-09-14 13:08:49 +00:00
"purgecss-webpack-plugin": "^1.6.0",
2020-02-25 14:42:44 +00:00
"sass-loader": "^8.0.2",
"sinon": "^6.1.5",
"vue-template-compiler": "^2.5.17",
"webpack-bundle-size-analyzer": "^3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true
},
"plugins": [
"html"
],
"rules": {
"no-console": 0,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "none"
}
]
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"IE >= 11",
"Firefox >= 52",
"ChromeAndroid >= 70",
"Chrome >= 49",
"Safari >= 9",
"Edge >= 16",
"Opera >= 57",
"OperaMini >= 57",
"Samsung >= 7",
"FirefoxAndroid >= 63",
"UCAndroid >= 11",
"iOS >= 9",
"Android >= 4",
"not dead"
]
}