updates
This commit is contained in:
parent
f556273311
commit
2c7c20ecf0
3473
package-lock.json
generated
3473
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
32
package.json
32
package.json
@ -12,28 +12,28 @@
|
||||
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxtjs/axios": "^5.12.2",
|
||||
"@nuxtjs/dayjs": "^1.2.0",
|
||||
"@nuxtjs/axios": "^5.12.3",
|
||||
"@nuxtjs/dayjs": "^1.2.1",
|
||||
"@nuxtjs/dotenv": "^1.4.1",
|
||||
"bootstrap": "^4.5.2",
|
||||
"bootstrap-vue": "^2.17.3",
|
||||
"bootstrap": "^4.5.3",
|
||||
"bootstrap-vue": "^2.20.1",
|
||||
"cookie-universal-nuxt": "^2.1.4",
|
||||
"jwt-decode": "^2.2.0",
|
||||
"nuxt": "^2.14.6",
|
||||
"splitpanes": "^2.2.1",
|
||||
"video.js": "^7.8.4",
|
||||
"vue-loading-overlay": "^3.4.1",
|
||||
"jwt-decode": "^3.1.2",
|
||||
"nuxt": "^2.14.9",
|
||||
"splitpanes": "^2.3.6",
|
||||
"video.js": "^7.10.2",
|
||||
"vue-loading-overlay": "^3.4.2",
|
||||
"vue2-perfect-scrollbar": "^1.5.0",
|
||||
"vuedraggable": "^2.24.1"
|
||||
"vuedraggable": "^2.24.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxtjs/eslint-config": "^3.1.0",
|
||||
"@nuxtjs/eslint-module": "^2.0.0",
|
||||
"@nuxtjs/eslint-config": "^5.0.0",
|
||||
"@nuxtjs/eslint-module": "^3.0.1",
|
||||
"@nuxtjs/style-resources": "^1.0.0",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"eslint": "^7.9.0",
|
||||
"eslint-plugin-nuxt": ">=1.0.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"sass-loader": "^10.0.2"
|
||||
"eslint": "^7.14.0",
|
||||
"eslint-plugin-nuxt": ">=2.0.0",
|
||||
"node-sass": "^5.0.0",
|
||||
"sass-loader": "^10.1.0"
|
||||
}
|
||||
}
|
||||
|
@ -218,12 +218,13 @@ import Menu from '@/components/Menu.vue'
|
||||
|
||||
export default {
|
||||
name: 'Configure',
|
||||
middleware: 'auth',
|
||||
|
||||
components: {
|
||||
Menu
|
||||
},
|
||||
|
||||
middleware: 'auth',
|
||||
|
||||
data () {
|
||||
return {
|
||||
oldPass: null,
|
||||
|
@ -37,7 +37,6 @@ import Menu from '@/components/Menu.vue'
|
||||
|
||||
export default {
|
||||
name: 'Logging',
|
||||
middleware: 'auth',
|
||||
|
||||
components: {
|
||||
Menu
|
||||
@ -58,6 +57,8 @@ export default {
|
||||
}
|
||||
},
|
||||
|
||||
middleware: 'auth',
|
||||
|
||||
data () {
|
||||
return {
|
||||
logName: 'ffplayout',
|
||||
|
@ -254,17 +254,19 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/* eslint-disable vue/custom-event-name-casing */
|
||||
import { mapState } from 'vuex'
|
||||
import Menu from '@/components/Menu.vue'
|
||||
|
||||
export default {
|
||||
name: 'Media',
|
||||
middleware: 'auth',
|
||||
|
||||
components: {
|
||||
Menu
|
||||
},
|
||||
|
||||
middleware: 'auth',
|
||||
|
||||
data () {
|
||||
return {
|
||||
isLoading: false,
|
||||
|
@ -227,12 +227,13 @@ import Menu from '@/components/Menu.vue'
|
||||
|
||||
export default {
|
||||
name: 'Media',
|
||||
middleware: 'auth',
|
||||
|
||||
components: {
|
||||
Menu
|
||||
},
|
||||
|
||||
middleware: 'auth',
|
||||
|
||||
data () {
|
||||
return {
|
||||
form: {
|
||||
|
@ -281,12 +281,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/* eslint-disable vue/custom-event-name-casing */
|
||||
import { mapState } from 'vuex'
|
||||
import Menu from '@/components/Menu.vue'
|
||||
|
||||
export default {
|
||||
name: 'Player',
|
||||
middleware: 'auth',
|
||||
|
||||
components: {
|
||||
Menu
|
||||
@ -298,6 +298,8 @@ export default {
|
||||
}
|
||||
},
|
||||
|
||||
middleware: 'auth',
|
||||
|
||||
data () {
|
||||
return {
|
||||
isLoading: false,
|
||||
|
@ -2,4 +2,5 @@ import Vue from 'vue'
|
||||
import draggable from 'vuedraggable'
|
||||
|
||||
Vue.use(draggable)
|
||||
/* eslint-disable-next-line */
|
||||
Vue.component('draggable', draggable)
|
||||
|
@ -3,4 +3,5 @@ import Loading from 'vue-loading-overlay'
|
||||
import 'vue-loading-overlay/dist/vue-loading.css'
|
||||
|
||||
Vue.use(Loading)
|
||||
/* eslint-disable-next-line */
|
||||
Vue.component('loading', Loading)
|
||||
|
@ -2,5 +2,6 @@ import Vue from 'vue'
|
||||
import { Splitpanes, Pane } from 'splitpanes'
|
||||
import 'splitpanes/dist/splitpanes.css'
|
||||
|
||||
/* eslint-disable */
|
||||
Vue.component('splitpanes', Splitpanes)
|
||||
Vue.component('pane', Pane)
|
||||
|
@ -1,4 +1,5 @@
|
||||
import Vue from 'vue'
|
||||
import VideoPlayer from '@/components/VideoPlayer.vue'
|
||||
|
||||
/* eslint-disable-next-line */
|
||||
Vue.component('video-player', VideoPlayer)
|
||||
|
Loading…
x
Reference in New Issue
Block a user