Skip to content
Commits on Source (3)
This diff is collapsed.
{
"name": "@coscine/projectview",
"version": "1.7.0",
"version": "1.7.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
......@@ -9,34 +9,34 @@
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@coscine/api-connection": "^1.11.0",
"@coscine/app-util": "^1.3.1",
"@coscine/api-connection": "^1.13.0",
"@coscine/app-util": "^1.3.2",
"@itcenter-layout/bootstrap": "^1.5.5",
"@itcenter-layout/masterpage": "^1.2.9",
"@types/jquery": "^3.3.34",
"bootstrap-vue": "^2.9.0",
"jquery": "^3.4.1",
"@types/jquery": "^3.3.35",
"bootstrap-vue": "^2.12.0",
"jquery": "^3.5.0",
"vue": "^2.6.11",
"vue-i18n": "^8.15.7",
"vue-i18n": "^8.17.3",
"vue-runtime-helpers": "^1.1.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.3",
"@semantic-release/gitlab": "^6.0.4",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-unit-mocha": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/test-utils": "1.0.0-beta.32",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-plugin-unit-mocha": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/test-utils": "1.0.0-beta.33",
"chai": "^4.2.0",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.11",
"semantic-release": "^17.0.4",
"semantic-release": "^17.0.7",
"@hutson/semantic-delivery-gitlab": "^9.1.0"
},
"directories": {
......
import jQuery from 'jquery';
import BootstrapVue from 'bootstrap-vue';
import Vue from 'vue';
import App from './App.vue';
import ProjectViewApp from './ProjectViewApp.vue';
import locales from './locale/locales';
import VueI18n from 'vue-i18n';
import { LanguageUtil } from '@coscine/app-util';
......@@ -18,7 +18,7 @@ jQuery(() => {
});
new Vue({
render: (h) => h(App),
render: (h) => h(ProjectViewApp),
i18n,
}).$mount('projectview');
});