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