- Implemented a mock Express server in `mock-bygma-test.js` to simulate Bygma's web price search API with sample data. - Created a new SQL file `standard_material_prices.sql` containing standard market prices for various construction materials. - Added initial files for frontend server and pricing test components.
38 lines
838 B
JSON
38 lines
838 B
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"
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.1",
|
|
"cors": "^2.8.5",
|
|
"csv-parser": "^3.2.0",
|
|
"dotenv": "^16.6.1",
|
|
"express": "^4.18.2",
|
|
"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",
|
|
"tesseract.js": "^5.0.4",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"keywords": [
|
|
"tilbudgivern",
|
|
"ai",
|
|
"quotes",
|
|
"construction"
|
|
],
|
|
"author": "Alex",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"react-scripts": "^5.0.1"
|
|
}
|
|
}
|