2018-02-01 12:17:04 +00:00
|
|
|
{
|
2018-02-01 14:43:54 +00:00
|
|
|
"name": "filebrowser-frontend",
|
2024-07-30 17:45:27 +00:00
|
|
|
"version": "3.0.0",
|
2019-01-05 16:12:09 +00:00
|
|
|
"private": true,
|
2024-07-30 17:45:27 +00:00
|
|
|
"type": "module",
|
|
|
|
"engines": {
|
|
|
|
"npm": ">=7.0.0",
|
|
|
|
"node": ">=18.0.0"
|
|
|
|
},
|
2018-02-01 12:17:04 +00:00
|
|
|
"scripts": {
|
2024-07-30 17:45:27 +00:00
|
|
|
"dev": "vite dev",
|
2024-11-21 00:15:30 +00:00
|
|
|
"build": "vite build && cp -r dist/* ../backend/http/embed",
|
2025-01-05 19:05:33 +00:00
|
|
|
"build-windows": "vite build && robocopy dist ../backend/http/embed /e",
|
2024-08-04 17:50:35 +00:00
|
|
|
"build-docker": "vite build",
|
2024-07-30 17:45:27 +00:00
|
|
|
"watch": "vite build --watch",
|
|
|
|
"typecheck": "vue-tsc -p ./tsconfig.json --noEmit",
|
2024-11-26 17:21:41 +00:00
|
|
|
"lint": "eslint --ext .js,.vue,ts src",
|
2024-06-12 19:51:13 +00:00
|
|
|
"lint:fix": "eslint --fix src/",
|
2024-07-30 17:45:27 +00:00
|
|
|
"format": "prettier --write .",
|
2024-11-26 17:21:41 +00:00
|
|
|
"test": "vitest run "
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-01-13 00:50:22 +00:00
|
|
|
"@playwright/test": "^1.49.1",
|
2023-09-09 21:20:02 +00:00
|
|
|
"ace-builds": "^1.24.2",
|
2019-01-05 16:12:09 +00:00
|
|
|
"clipboard": "^2.0.4",
|
2021-04-15 12:28:19 +00:00
|
|
|
"css-vars-ponyfill": "^2.4.3",
|
2023-09-09 21:20:02 +00:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"normalize.css": "^8.0.1",
|
2024-07-30 17:45:27 +00:00
|
|
|
"qrcode.vue": "^3.4.1",
|
|
|
|
"vue": "^3.4.21",
|
|
|
|
"vue-i18n": "^9.10.2",
|
|
|
|
"vue-lazyload": "^3.0.0",
|
|
|
|
"vue-router": "^4.3.0"
|
2018-02-01 12:17:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-30 17:45:27 +00:00
|
|
|
"@intlify/unplugin-vue-i18n": "^4.0.0",
|
|
|
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
|
|
"@vue/eslint-config-typescript": "^13.0.0",
|
|
|
|
"eslint": "^8.57.0",
|
2024-11-26 17:21:41 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-07-30 17:45:27 +00:00
|
|
|
"eslint-plugin-vue": "^9.24.0",
|
2024-11-26 17:21:41 +00:00
|
|
|
"jsdom": "^25.0.1",
|
2024-07-30 17:45:27 +00:00
|
|
|
"vite": "^5.2.7",
|
|
|
|
"vite-plugin-compression2": "^1.0.0",
|
2024-11-26 17:21:41 +00:00
|
|
|
"vitest": "^2.1.5",
|
2024-07-30 17:45:27 +00:00
|
|
|
"vue-tsc": "^2.0.7"
|
2024-02-10 00:13:02 +00:00
|
|
|
}
|
2024-07-30 17:45:27 +00:00
|
|
|
}
|