filebrowser/frontend/package.json
Kloon ImKloon 7c91ba03b7
Migration to vue3 continued
Replace vuex with pinia
Fix some routing issues
Fix most vue3 breaking changes
2023-08-28 17:48:55 +02:00

66 lines
1.8 KiB
JSON

{
"name": "filebrowser-frontend",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"serve": "vite serve",
"build": "vite build",
"watch": "vite build --watch",
"lint": "eslint --ext .vue,.js,.ts --ignore-path .gitignore src/",
"lint:fix": "eslint --ext .vue,.js,.ts --ignore-path .gitignore --fix src/",
"format": "prettier --write src/"
},
"dependencies": {
"@vue/compat": "^3.3.4",
"@vueuse/core": "^10.4.1",
"ace-builds": "^1.24.1",
"clipboard": "^2.0.11",
"core-js": "^3.32.1",
"css-vars-ponyfill": "^2.4.8",
"filesize": "^10.0.12",
"js-base64": "^3.7.5",
"jwt-decode": "^3.1.2",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"material-icons": "^1.13.10",
"moment": "^2.29.4",
"normalize.css": "^8.0.1",
"noty": "^3.2.0-beta",
"pinia": "^2.1.6",
"pretty-bytes": "^6.1.1",
"qrcode.vue": "^3.4.1",
"tus-js-client": "^3.1.1",
"utif": "^3.1.0",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-lazyload": "^3.0.0",
"vue-router": "^4.2.4",
"vue-simple-progress": "^1.1.1",
"whatwg-fetch": "^3.6.17"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^0.12.3",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitejs/plugin-vue": "^4.3.3",
"@vue/eslint-config-prettier": "^8.0.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"terser": "^5.19.2",
"vite": "^4.4.9",
"vite-plugin-compression2": "^0.10.4",
"vite-plugin-rewrite-all": "^1.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 11"
]
}