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,
|
2018-02-01 12:17:04 +00:00
|
|
|
"scripts": {
|
2019-01-05 16:12:09 +00:00
|
|
|
"serve": "vue-cli-service serve",
|
2021-03-14 18:59:55 +00:00
|
|
|
"build": "find ./dist -maxdepth 1 -mindepth 1 ! -name '.gitignore' -exec rm -r {} + && vue-cli-service build --no-clean",
|
2021-03-21 11:51:58 +00:00
|
|
|
"lint": "npx vue-cli-service lint --no-fix",
|
|
|
|
"fix": "npx vue-cli-service lint",
|
|
|
|
"watch": "find ./dist -maxdepth 1 -mindepth 1 ! -name '.gitignore' -exec rm -r {} + && vue-cli-service build --watch --no-clean"
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-10-24 11:07:56 +00:00
|
|
|
"ace-builds": "^1.4.7",
|
2019-01-05 16:12:09 +00:00
|
|
|
"clipboard": "^2.0.4",
|
2019-01-21 14:55:54 +00:00
|
|
|
"js-base64": "^2.5.1",
|
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",
|
2019-01-05 16:12:09 +00:00
|
|
|
"material-design-icons": "^3.0.1",
|
2019-01-22 17:33:32 +00:00
|
|
|
"moment": "^2.24.0",
|
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",
|
2019-12-02 15:35:53 +00:00
|
|
|
"qrcode.vue": "^1.7.0",
|
2021-03-02 11:14:32 +00:00
|
|
|
"utif": "^3.1.0",
|
2019-03-20 21:22:13 +00:00
|
|
|
"vue": "^2.6.10",
|
2019-12-19 11:25:43 +00:00
|
|
|
"vue-i18n": "^8.15.3",
|
2020-07-23 10:01:18 +00:00
|
|
|
"vue-lazyload": "^1.3.3",
|
2019-09-12 13:20:31 +00:00
|
|
|
"vue-router": "^3.1.3",
|
2019-12-02 15:36:01 +00:00
|
|
|
"vuex": "^3.1.2",
|
2019-01-05 16:12:09 +00:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-12-30 11:53:03 +00:00
|
|
|
"@vue/cli-plugin-babel": "^4.1.2",
|
2021-03-21 11:51:58 +00:00
|
|
|
"@vue/cli-plugin-eslint": "~4.5.0",
|
2019-12-30 11:52:18 +00:00
|
|
|
"@vue/cli-service": "^4.1.2",
|
2021-03-21 11:51:58 +00:00
|
|
|
"@vue/eslint-config-prettier": "^6.0.0",
|
|
|
|
"babel-eslint": "^10.1.0",
|
2019-12-02 15:52:20 +00:00
|
|
|
"eslint": "^6.7.2",
|
2021-03-21 11:51:58 +00:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
|
|
|
"prettier": "^2.2.1",
|
2019-03-20 21:22:13 +00:00
|
|
|
"vue-template-compiler": "^2.6.10"
|
2019-01-05 16:12:09 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:vue/essential",
|
2021-03-21 11:51:58 +00:00
|
|
|
"eslint:recommended",
|
|
|
|
"@vue/prettier"
|
2019-01-05 16:12:09 +00:00
|
|
|
],
|
|
|
|
"rules": {},
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "babel-eslint"
|
|
|
|
}
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"postcss": {
|
|
|
|
"plugins": {
|
|
|
|
"autoprefixer": {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"not ie <= 8"
|
|
|
|
]
|
|
|
|
}
|