2018-02-01 12:17:04 +00:00
|
|
|
{
|
2018-02-01 14:43:54 +00:00
|
|
|
"name": "filebrowser-frontend",
|
2019-01-05 16:12:09 +00:00
|
|
|
"version": "2.0.0",
|
|
|
|
"private": true,
|
2023-08-26 11:55:51 +00:00
|
|
|
"type": "module",
|
2018-02-01 12:17:04 +00:00
|
|
|
"scripts": {
|
2023-08-26 11:55:51 +00:00
|
|
|
"dev": "vite dev",
|
|
|
|
"serve": "vite serve",
|
|
|
|
"build": "vite build",
|
|
|
|
"watch": "vite build --watch",
|
|
|
|
"clean": "find ./dist -maxdepth 1 -mindepth 1 ! -name '.gitkeep' -exec rm -r {} +",
|
|
|
|
"lint": "eslint --ext .vue,.js src/",
|
|
|
|
"lint:fix": "eslint --ext .vue,.js --fix src/",
|
|
|
|
"format": "prettier --write ."
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-26 11:55:51 +00:00
|
|
|
"ace-builds": "^1.23.4",
|
|
|
|
"clipboard": "^2.0.11",
|
|
|
|
"core-js": "^3.32.0",
|
|
|
|
"css-vars-ponyfill": "^2.4.8",
|
|
|
|
"filesize": "^10.0.8",
|
|
|
|
"js-base64": "^3.7.5",
|
2019-01-05 16:12:09 +00:00
|
|
|
"lodash.clonedeep": "^4.5.0",
|
2020-06-19 07:46:33 +00:00
|
|
|
"lodash.throttle": "^4.1.1",
|
2023-08-26 11:55:51 +00:00
|
|
|
"material-icons": "^1.13.9",
|
2022-07-12 10:09:06 +00:00
|
|
|
"moment": "^2.29.4",
|
2019-01-05 16:12:09 +00:00
|
|
|
"normalize.css": "^8.0.1",
|
2018-02-01 12:17:04 +00:00
|
|
|
"noty": "^3.2.0-beta",
|
2023-08-26 11:55:51 +00:00
|
|
|
"pretty-bytes": "^6.1.1",
|
2019-12-02 15:35:53 +00:00
|
|
|
"qrcode.vue": "^1.7.0",
|
2023-08-26 11:55:51 +00:00
|
|
|
"tus-js-client": "^3.1.1",
|
2021-03-02 11:14:32 +00:00
|
|
|
"utif": "^3.1.0",
|
2023-08-26 11:55:51 +00:00
|
|
|
"vue": "^2.7.14",
|
2022-06-02 10:52:24 +00:00
|
|
|
"vue-async-computed": "^3.9.0",
|
2023-08-26 11:55:51 +00:00
|
|
|
"vue-i18n": "^8.28.2",
|
|
|
|
"vue-lazyload": "^1.3.5",
|
|
|
|
"vue-router": "^3.6.5",
|
2022-06-02 10:52:24 +00:00
|
|
|
"vue-simple-progress": "^1.1.1",
|
2023-08-26 11:55:51 +00:00
|
|
|
"vuex": "^3.6.2",
|
2021-04-15 12:28:19 +00:00
|
|
|
"vuex-router-sync": "^5.0.0",
|
2023-08-26 11:55:51 +00:00
|
|
|
"whatwg-fetch": "^3.6.17"
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-26 11:55:51 +00:00
|
|
|
"@vitejs/plugin-legacy": "^4.1.1",
|
|
|
|
"@vitejs/plugin-vue2": "^2.2.0",
|
|
|
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
|
|
"autoprefixer": "^10.4.14",
|
|
|
|
"eslint": "^8.46.0",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"eslint-plugin-vue": "^9.16.1",
|
|
|
|
"jsdom": "^22.1.0",
|
2023-11-02 08:09:01 +00:00
|
|
|
"postcss": "^8.4.31",
|
2023-08-26 11:55:51 +00:00
|
|
|
"prettier": "^3.0.1",
|
|
|
|
"terser": "^5.19.2",
|
|
|
|
"vite": "^4.4.9",
|
2023-08-29 18:14:45 +00:00
|
|
|
"vite-plugin-compression2": "^0.10.3",
|
|
|
|
"vite-plugin-rewrite-all": "^1.0.1"
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
2021-04-15 12:28:19 +00:00
|
|
|
"not ie < 11"
|
2018-02-01 12:17:04 +00:00
|
|
|
]
|
|
|
|
}
|