Files
tilbudgivern/package.json
T
alex 185eb7664a fix: resolve React frontend path issue causing white screen
- Problem: __dirname resolved to /data/home/alex/git/tilbudgivern in PM2
- Solution: Use absolute paths for frontend build serving
- Changed from path.join(__dirname, 'frontend/build') to absolute path
- Now serving from /home/alex/git/tilbudgivern/frontend/build
- JavaScript and CSS files load correctly with HTTP 200 status
- Fixes white screen issue in all tabs including tømrer and materiale priser
2025-09-14 22:11:07 +02:00

37 lines
810 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",
"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"
}
}