myCRM/package.json
olli 3c36fdd9a1 feat: Add Document and GitRepository entities with repositories and services
- Created Document entity with properties for file management, including filename, originalFilename, mimeType, size, uploadedAt, uploadedBy, relatedEntity, relatedEntityId, and description.
- Implemented DocumentRepository for querying documents by related entity and user.
- Added GitRepository entity with properties for managing Git repositories, including URL, localPath, branch, provider, accessToken, project, lastSync, name, description, createdAt, and updatedAt.
- Implemented GitRepositoryRepository for querying repositories by project.
- Developed GitHubService for interacting with GitHub API, including methods for fetching commits, contributions, branches, and repository info.
- Developed GitService for local Git repository interactions, including methods for fetching commits, contributions, branches, and repository info.
- Developed GiteaService for interacting with Gitea API, including methods for fetching commits, contributions, branches, repository info, and testing connection.
2025-11-12 16:14:18 +01:00

40 lines
1.1 KiB
JSON

{
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.0",
"@symfony/webpack-encore": "^5.1.0",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"autoprefixer": "^10.4.21",
"core-js": "^3.38.0",
"postcss": "^8.5.6",
"postcss-loader": "^7.0.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.70.0",
"sass-loader": "^16.0.0",
"tailwindcss": "^4.1.17",
"tailwindcss-primeui": "^0.6.1",
"vue": "^3.5.0",
"vue-loader": "^17.4.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"@primevue/themes": "^4.4.1",
"chart.js": "^4.5.1",
"pinia": "^2.2.0",
"primeicons": "^7.0.0",
"primevue": "^4.3.0",
"vue-router": "^4.5.0",
"xlsx": "^0.18.5"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress"
}
}