kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
141 wiersze
3.2 KiB
JSON
141 wiersze
3.2 KiB
JSON
{
|
|
"name": "front",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Funkwhale front-end",
|
|
"author": "Funkwhale Collective <contact@funkwhale.audio>",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build --mode development",
|
|
"build:deployment": "vite build --base /front/",
|
|
"serve": "vite preview",
|
|
"test:unit": "jest",
|
|
"lint": "eslint --ext .js,.vue src",
|
|
"fix-fomantic-css": "scripts/fix-fomantic-css.sh",
|
|
"i18n-compile": "scripts/i18n-compile.sh",
|
|
"i18n-extract": "scripts/i18n-extract.sh",
|
|
"postinstall": "yarn run fix-fomantic-css"
|
|
},
|
|
"dependencies": {
|
|
"@vue/composition-api": "1.4.9",
|
|
"@vueuse/core": "8.2.5",
|
|
"axios": "0.26.1",
|
|
"axios-auth-refresh": "3.2.2",
|
|
"diff": "5.0.0",
|
|
"focus-trap": "6.7.3",
|
|
"fomantic-ui-css": "2.8.8",
|
|
"howler": "2.2.3",
|
|
"js-logger": "1.6.1",
|
|
"lodash": "4.17.21",
|
|
"moment": "2.29.3",
|
|
"qs": "6.10.5",
|
|
"register-service-worker": "1.7.2",
|
|
"sanitize-html": "2.7.0",
|
|
"sass": "1.49.11",
|
|
"showdown": "2.0.3",
|
|
"text-clipper": "2.2.0",
|
|
"vue": "2.6.14",
|
|
"vue-gettext": "2.1.12",
|
|
"vue-lazyload": "1.3.4",
|
|
"vue-plyr": "7.0.0",
|
|
"vue-router": "3.5.4",
|
|
"vue-upload-component": "2.8.22",
|
|
"vuedraggable": "2.24.3",
|
|
"vuex": "3.6.2",
|
|
"vuex-persistedstate": "4.1.0",
|
|
"vuex-router-sync": "5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.17.12",
|
|
"@babel/plugin-transform-runtime": "7.17.12",
|
|
"@babel/preset-env": "7.16.11",
|
|
"@vue/test-utils": "1.3.0",
|
|
"autoprefixer": "10.4.7",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-jest": "27.5.1",
|
|
"chai": "4.3.6",
|
|
"easygettext": "2.17.0",
|
|
"eslint": "8.11.0",
|
|
"eslint-config-standard": "16.0.3",
|
|
"eslint-plugin-html": "6.2.0",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "6.0.0",
|
|
"eslint-plugin-vue": "7.20.0",
|
|
"glob-all": "3.3.0",
|
|
"jest-cli": "27.5.1",
|
|
"moxios": "0.4.0",
|
|
"sinon": "13.0.2",
|
|
"vite": "2.8.6",
|
|
"vite-plugin-vue2": "1.9.3",
|
|
"vue-jest": "3.0.7",
|
|
"vue-template-compiler": "2.6.14"
|
|
},
|
|
"resolutions": {
|
|
"vue-plyr/plyr": "3.6.12"
|
|
},
|
|
"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"
|
|
],
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"vue"
|
|
],
|
|
"transform": {
|
|
".*\\.(vue)$": "vue-jest",
|
|
"^.+\\.js$": "babel-jest"
|
|
},
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"testEnvironment": "jsdom"
|
|
}
|
|
}
|