webtransfer/package.json

37 lines
1.1 KiB
JSON
Raw Normal View History

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",
"@nextcloud/files": "^3.10.0",
2024-11-14 17:15:42 +01:00
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/vue": "^8.20.0",
"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",
"stylelint-webpack-plugin": "^5.0.0",
"tailwindcss": "^3.4.15"
2024-11-06 15:35:54 +01:00
}
}