2023-06-22 20:10:30 +02:00
|
|
|
{
|
|
|
|
"name": "repod",
|
2024-05-29 17:11:53 +02:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2024-09-13 16:33:48 +02:00
|
|
|
"type": "module",
|
2023-06-22 20:10:30 +02:00
|
|
|
"scripts": {
|
2024-10-17 16:29:49 +02:00
|
|
|
"build": "vue-tsc && vite build",
|
|
|
|
"dev": "vite --mode development build",
|
|
|
|
"dev:watch": "vite --mode development build --watch",
|
2024-08-08 17:20:54 +02:00
|
|
|
"watch": "npm run dev:watch",
|
2024-05-29 17:11:53 +02:00
|
|
|
"lint": "eslint src",
|
2024-08-08 17:20:54 +02:00
|
|
|
"lint:fix": "eslint src --fix",
|
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix"
|
2023-06-22 20:10:30 +02:00
|
|
|
},
|
2024-05-29 17:11:53 +02:00
|
|
|
"prettier": "@nextcloud/prettier-config",
|
2023-06-22 20:10:30 +02:00
|
|
|
"dependencies": {
|
2024-10-18 14:41:47 +02:00
|
|
|
"@formatjs/intl-segmenter": "^11.5.9",
|
2024-09-19 08:27:04 +02:00
|
|
|
"@nextcloud/axios": "^2.5.1",
|
2024-04-30 00:48:47 +02:00
|
|
|
"@nextcloud/initial-state": "^2.2.0",
|
2024-05-18 12:46:11 +02:00
|
|
|
"@nextcloud/l10n": "^3.1.0",
|
2024-04-30 00:48:47 +02:00
|
|
|
"@nextcloud/router": "^3.0.1",
|
2024-08-08 17:20:54 +02:00
|
|
|
"@nextcloud/vite-config": "^2.2.2",
|
|
|
|
"@nextcloud/vue": "9.0.0-alpha.5",
|
2024-10-17 16:05:27 +02:00
|
|
|
"dompurify": "^3.1.7",
|
2024-08-08 11:37:48 +02:00
|
|
|
"linkify-html": "^4.1.3",
|
2024-10-17 16:05:27 +02:00
|
|
|
"pinia": "^2.2.4",
|
2024-08-08 22:39:43 +02:00
|
|
|
"toastify-js": "^1.12.0",
|
2024-10-17 16:05:27 +02:00
|
|
|
"vite": "^5.4.9",
|
|
|
|
"vite-plugin-vue-devtools": "^7.5.2",
|
|
|
|
"vue": "^3.5.12",
|
|
|
|
"vue-material-design-icons": "^5.3.1",
|
2024-09-13 12:35:08 +02:00
|
|
|
"vue-router": "^4.4.5"
|
2023-06-22 20:10:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-30 00:48:47 +02:00
|
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
2024-05-18 12:46:11 +02:00
|
|
|
"@nextcloud/eslint-config": "^8.4.1",
|
2024-05-06 14:47:47 +02:00
|
|
|
"@nextcloud/prettier-config": "^1.1.0",
|
2024-05-18 12:46:11 +02:00
|
|
|
"@nextcloud/stylelint-config": "^3.0.1",
|
2024-09-13 08:56:04 +02:00
|
|
|
"@types/toastify-js": "^1.12.3",
|
2024-10-17 16:05:27 +02:00
|
|
|
"@vue/eslint-config-typescript": "^13",
|
2024-09-13 08:56:04 +02:00
|
|
|
"@vue/tsconfig": "^0.5.1",
|
2024-04-30 00:48:47 +02:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-08-25 11:53:52 +02:00
|
|
|
"eslint-plugin-pinia": "^0.4.1",
|
2024-09-13 08:56:04 +02:00
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
|
|
"ts-node": "^10.9.2",
|
2024-09-14 16:04:25 +02:00
|
|
|
"typescript": "5.5",
|
2024-09-13 08:56:04 +02:00
|
|
|
"vue-eslint-parser": "^9.4.3",
|
|
|
|
"vue-tsc": "^2.1.6"
|
2024-09-13 16:33:48 +02:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"extends @nextcloud/browserslist-config"
|
|
|
|
]
|
2023-06-22 20:10:30 +02:00
|
|
|
}
|