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",
|
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
|
|
|
|
},
|
|
|
|
"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",
|
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
|
|
|
}
|
|
|
|
}
|