2024-11-06 15:35:54 +01:00
|
|
|
{
|
|
|
|
"name": "webserver",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"engines": {
|
|
|
|
"node": "^20.0.0",
|
|
|
|
"npm": "^10.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "NODE_ENV=production webpack --config webpack.js --progress",
|
|
|
|
"dev": "NODE_ENV=development webpack --config webpack.js --progress",
|
|
|
|
"watch": "NODE_ENV=development webpack --config webpack.js --progress --watch",
|
|
|
|
"lint": "eslint src",
|
2025-01-10 22:34:03 +01:00
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
|
|
"tailwind": "npx tailwindcss -i ./src/input.css -o ./src/output.css",
|
2025-01-10 22:53:39 +01:00
|
|
|
"buildAll": "npm i && npm run build && npm run tailwind"
|
2024-11-06 15:35:54 +01:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"extends @nextcloud/browserslist-config"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-11-14 17:15:42 +01:00
|
|
|
"@nextcloud/dialogs": "^3.1.2",
|
2024-11-15 15:55:40 +01:00
|
|
|
"@nextcloud/files": "^3.10.0",
|
2024-11-14 17:15:42 +01:00
|
|
|
"@nextcloud/initial-state": "^2.2.0",
|
2024-11-15 15:55:40 +01:00
|
|
|
"@nextcloud/vue": "^8.20.0",
|
2025-01-06 16:59:05 +01:00
|
|
|
"file-type": "^19.6.0",
|
2024-11-29 16:23:45 +01:00
|
|
|
"i18next": "^24.0.2",
|
2024-11-19 16:11:23 +01:00
|
|
|
"jszip": "^3.10.1",
|
2024-11-18 15:14:02 +01:00
|
|
|
"vue": "^2.7.16",
|
|
|
|
"vue-material-design-icons": "^5.3.1"
|
2024-11-06 15:35:54 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
|
|
"@nextcloud/eslint-config": "^8.3.0",
|
|
|
|
"@nextcloud/stylelint-config": "^2.4.0",
|
|
|
|
"@nextcloud/webpack-vue-config": "^6.0.1",
|
|
|
|
"eslint-webpack-plugin": "^4.1.0",
|
2024-11-15 15:55:40 +01:00
|
|
|
"stylelint-webpack-plugin": "^5.0.0",
|
|
|
|
"tailwindcss": "^3.4.15"
|
2024-11-06 15:35:54 +01:00
|
|
|
}
|
|
|
|
}
|