repod/package.json

39 lines
1.2 KiB
JSON
Raw Normal View History

2023-06-22 18:10:30 +00:00
{
"name": "repod",
"license": "AGPL-3.0-or-later",
2023-06-22 18:10:30 +00:00
"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"
2023-06-22 18:10:30 +00:00
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"prettier": "@nextcloud/prettier-config",
2023-06-22 18:10:30 +00:00
"dependencies": {
2024-05-03 16:39:07 +00:00
"@nextcloud/axios": "^2.5.0",
2024-06-14 17:41:51 +00:00
"@nextcloud/dialogs": "^5.3.2",
"@nextcloud/initial-state": "^2.2.0",
2024-05-18 10:46:11 +00:00
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.12.0",
2023-07-02 14:56:58 +00:00
"vue": "^2",
"vue-material-design-icons": "^5.3.0",
2023-07-07 16:38:53 +00:00
"vue-router": "^3",
"vuex": "^3"
2023-06-22 18:10:30 +00:00
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
2024-05-18 10:46:11 +00:00
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/prettier-config": "^1.1.0",
2024-05-18 10:46:11 +00:00
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/webpack-vue-config": "^6.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.2.0",
"stylelint-webpack-plugin": "^5.0.1"
2023-06-22 18:10:30 +00:00
}
}