Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions web-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.2",
"agent-base": "^6.0.2",
Expand All @@ -69,18 +68,19 @@
"prettier": "2.6.0",
"purgecss": "^5.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.69.5",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.4",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.5.3",
"vite-plugin-static-copy": "^0.17.0",
"vite-plugin-vuetify": "^1.0.2",
"vue-tsc": "^1.6.5"
},
"engines": {
"node": ">=18"
},
"version": "0.0.0",
"dependencies": {}
"dependencies": {
"@vitejs/plugin-vue2": "^2.3.1"
}
}
11 changes: 6 additions & 5 deletions web-app/packages/admin-app/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module.exports = {
env: {
node: true
},
extends: [
'plugin:vue/essential',
'eslint:recommended',
'@vue/typescript/recommended'
'@vue/typescript/recommended',
'../../.eslintrc.cjs'
],
parser: 'vue-eslint-parser',
parserOptions: {
Expand All @@ -16,6 +14,9 @@ module.exports = {
plugins: ['@typescript-eslint'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// Vue 3 opt https://v3-migration.vuejs.org/breaking-changes/key-attribute.html#with-template-v-for
'vue/no-v-for-template-key-on-child': 'error',
'vue/no-v-for-template-key': 'off',
}
}
1 change: 1 addition & 0 deletions web-app/packages/admin-app/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export {}

declare module 'vue' {
export interface GlobalComponents {
PDivider: typeof import('primevue/divider')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
VApp: typeof import('vuetify/lib')['VApp']
Expand Down
28 changes: 10 additions & 18 deletions web-app/packages/admin-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vue-demi-switch 2.7 && vite --port 8081",
"dev": "vue-demi-switch 3 && vite --port 8081",
"preview": "vite preview --port 8081",
"build": "vue-demi-switch 2.7 && vite build",
"build:dev": "vue-demi-switch 2.7 && vite build --mode development",
"build": "vue-demi-switch 3 && vite build",
"build:dev": "vue-demi-switch 3 && vite build --mode development",
"build:lib": "echo 'Not defined script'",
"build:lib:prod": "echo 'Not defined script'",
"build:lib:all": "yarn build:lib && yarn build:types",
Expand All @@ -19,24 +19,16 @@
"i18n:report": "vue-cli-service i18n:report --src './src/admin/**/*.?(js|vue)' --locales './src/admin/locales/**/*.json'"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@mdi/font": "^6.6.96",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@tabler/icons-webfont": "^2.42.0",
"axios": "^0.28.1",
"crypto-js": "^3.1.9-1",
"date-fns": "^2.28.0",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"material-icons": "^0.2.3",
"pdfjs-dist": "2.5.207",
"pinia": "^2.1.7",
"portal-vue": "^2.1.7",
"sass": "^1.69.5",
"vue": "^2.7.14",
"vue-i18n": "^8.28.2",
"vue-meta": "^2.4.0",
"vue-router": "^3.6.5",
"vue-tabler-icons": "^1.0",
"vuetify": "^2.6.15"
"primeflex": "^3.3.1",
"primevue": "3.43.0",
"vue": "3.3.8",
"vue-i18n": "^9.7.1",
"vue-meta": "^3.0.0-alpha.10",
"vue-router": "4.2.5"
}
}
Loading