Files
tilbudgivern/backend/package.json
T
alex e0086fa2a2 Add initial setup scripts and OCR testing functionality
- Created setup scripts for advanced database, pricing database, and quote items.
- Added a test script for OCR functionality, including PDF text extraction and price data extraction.
- Included test files for various scenarios: poor categorization, material list, and text with noise.
2025-09-14 17:30:10 +02:00

34 lines
797 B
JSON

{
"name": "tilbudgivern-backend",
"version": "1.0.0",
"description": "Backend for AI-baseret tilbudsberegner",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/init.js",
"start": "node src/init.js",
"build": "echo 'No build step needed for Node.js'",
"test": "jest"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"multer": "^2.0.2",
"mysql2": "^3.14.5",
"openai": "^4.20.1",
"pdf-parse": "^1.1.1",
"pdf2pic": "^3.2.0",
"rate-limiter-flexible": "^2.4.1",
"sharp": "^0.34.3",
"tesseract.js": "^6.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}