webtransfer/package.json

42 lines
1.3 KiB
JSON
Raw Permalink 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",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./src/output.css",
2025-01-10 22:59:50 +01:00
"buildAll": "npm i && npm run tailwind && npm run build"
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",
"@nextcloud/files": "^3.10.0",
2024-11-14 17:15:42 +01:00
"@nextcloud/initial-state": "^2.2.0",
"@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",
"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
}
}