Files
tilbudgivern/package.json
alexpolo1 2d7218d67e feat: Implement TaskDialog component for managing tasks in smart packages
- Added TaskDialog component with functionality to create and edit tasks.
- Integrated form validation and error handling for task inputs.
- Implemented step management within tasks, including adding and deleting steps.
- Styled TaskDialog with CSS for improved user experience.

feat: Create SmartPackagesRoutes for navigation and routing

- Established routing for smart packages, including create and edit functionalities.
- Added loading state management for better user feedback during data fetching.
- Integrated SmartPackagesMenu for navigation within the smart packages section.

feat: Add utility functions for formatting data

- Implemented formatting utilities for currency, time, date, and percentages.
- Ensured consistent formatting across the application for better readability.

chore: Update database schema for smart packages

- Extended material_packages table with new fields for estimated hours, hourly rate, and difficulty level.
- Created smart_package_tasks and smart_package_steps tables for task management.
- Added foreign key relationships and indexes for improved database performance.

test: Add API tests for smart packages functionality

- Created test suite for validating smart packages API endpoints.
- Included tests for CRUD operations on smart packages and retrieval of categories and types.
2025-10-22 19:29:21 +00:00

44 lines
1.0 KiB
JSON

{
"name": "tilbudgivern-unified",
"version": "1.0.0",
"description": "Unified Tilbudgivern application with frontend and backend",
"main": "unified-server.js",
"scripts": {
"start": "node unified-server.js",
"dev": "nodemon unified-server.js",
"test-smart-packages": "node test-smart-packages-api.js"
},
"dependencies": {
"@playwright/test": "^1.55.1",
"axios": "^1.12.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"html-pdf-node": "^1.0.8",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"nodemon": "^3.0.2",
"openai": "^4.20.1",
"pdf-parse": "^1.1.1",
"puppeteer": "^24.21.0",
"socket.io": "^4.8.1",
"tesseract.js": "^5.0.4",
"winston": "^3.11.0"
},
"keywords": [
"tilbudgivern",
"ai",
"quotes",
"construction"
],
"author": "Alex",
"license": "MIT",
"devDependencies": {
"react-scripts": "^5.0.1"
}
}