2018-01-20 20:23:27 +01:00
|
|
|
{
|
2020-02-26 09:05:20 +01:00
|
|
|
"name": "fredy",
|
2026-03-09 15:35:29 +01:00
|
|
|
"version": "20.0.0",
|
2018-01-20 20:23:27 +01:00
|
|
|
"description": "[F]ind [R]eal [E]states [d]amn eas[y].",
|
|
|
|
|
"scripts": {
|
2025-07-22 21:39:52 +02:00
|
|
|
"prepare": "husky",
|
2025-07-25 13:13:04 +02:00
|
|
|
"start:backend": "x-var NODE_ENV=production node index.js",
|
|
|
|
|
"start:backend:dev": "nodemon --watch index.js --watch lib",
|
|
|
|
|
"start:frontend": "vite -m production",
|
|
|
|
|
"start:frontend:dev": "vite",
|
|
|
|
|
"build:frontend": "vite build",
|
2025-08-30 21:21:34 +02:00
|
|
|
"format": "prettier --write \"**/*.js\"",
|
2025-08-26 08:00:33 +02:00
|
|
|
"format:check": "prettier --check \"**/*.js\"",
|
2025-09-03 14:47:43 +02:00
|
|
|
"test": "node --import ./test/esmock-loader.mjs ./node_modules/mocha/bin/mocha.js --timeout 60000 test/**/*.test.js",
|
2025-12-23 08:47:51 +01:00
|
|
|
"testGH": "node --import ./test/esmock-loader.mjs ./node_modules/mocha/bin/mocha.js --timeout 60000 --exclude test/provider/immonet.test.js --exclude test/provider/immobilienDe.test.js --exclude test/provider/immowelt.test.js test/**/*.test.js",
|
2025-07-26 20:42:58 +02:00
|
|
|
"lint": "eslint .",
|
2026-03-09 15:35:29 +01:00
|
|
|
"mcp:stdio": "node mcp/stdio.js",
|
2025-09-18 15:38:23 +02:00
|
|
|
"lint:fix": "yarn lint --fix",
|
2025-09-18 17:28:30 +02:00
|
|
|
"migratedb": "node lib/services/storage/migrations/migrate.js",
|
2025-12-11 10:40:55 +01:00
|
|
|
"migratedb:overwrite": "x-var MIGRATION_ALLOW_CHECKSUM_UPDATE=true node lib/services/storage/migrations/migrate.js",
|
2026-02-05 12:02:18 +01:00
|
|
|
"copyright": "node ./copyright.js",
|
|
|
|
|
"release": "node ./tools/release/release.js"
|
2020-02-26 09:05:20 +01:00
|
|
|
},
|
2023-03-13 13:42:43 +01:00
|
|
|
"type": "module",
|
2020-02-26 09:05:20 +01:00
|
|
|
"lint-staged": {
|
2025-07-22 21:39:52 +02:00
|
|
|
"*.{js,jsx}": [
|
|
|
|
|
"yarn lint",
|
2025-12-11 10:40:55 +01:00
|
|
|
"yarn format",
|
|
|
|
|
"yarn copyright"
|
2020-02-26 09:05:20 +01:00
|
|
|
]
|
2018-01-20 20:23:27 +01:00
|
|
|
},
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"author": "Christian Kellner",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"flat",
|
|
|
|
|
"flatfinder",
|
|
|
|
|
"fredy",
|
|
|
|
|
"real estates",
|
|
|
|
|
"germany",
|
|
|
|
|
"apartment",
|
|
|
|
|
"house",
|
|
|
|
|
"rent",
|
|
|
|
|
"immoscout",
|
2021-11-11 15:31:53 +01:00
|
|
|
"scraper",
|
2018-01-20 20:23:27 +01:00
|
|
|
"immonet",
|
|
|
|
|
"immowelt",
|
|
|
|
|
"immobilienscout24"
|
|
|
|
|
],
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/orangecoding/fredy/issues"
|
|
|
|
|
},
|
2025-12-11 10:40:55 +01:00
|
|
|
"license": "Apache-2.0",
|
2020-02-26 09:05:20 +01:00
|
|
|
"engines": {
|
2025-09-18 15:38:23 +02:00
|
|
|
"node": ">=22.0.0",
|
2022-03-09 14:28:13 +01:00
|
|
|
"npm": ">=7.0.0"
|
2020-02-26 09:05:20 +01:00
|
|
|
},
|
2021-01-21 16:09:23 +01:00
|
|
|
"browserslist": [
|
|
|
|
|
"> 0.5%",
|
|
|
|
|
"not dead",
|
|
|
|
|
"not ie 6-11",
|
|
|
|
|
"Firefox ESR"
|
|
|
|
|
],
|
2018-01-20 20:23:27 +01:00
|
|
|
"dependencies": {
|
2026-03-08 09:55:46 +01:00
|
|
|
"@douyinfe/semi-icons": "^2.92.2",
|
|
|
|
|
"@douyinfe/semi-ui": "2.92.2",
|
|
|
|
|
"@douyinfe/semi-ui-19": "^2.92.2",
|
2026-03-08 09:44:18 +01:00
|
|
|
"@mapbox/mapbox-gl-draw": "^1.5.1",
|
2025-09-22 09:57:50 +02:00
|
|
|
"@sendgrid/mail": "8.1.6",
|
2026-02-16 12:30:59 +01:00
|
|
|
"@vitejs/plugin-react": "5.1.4",
|
2026-03-09 15:35:29 +01:00
|
|
|
"@modelcontextprotocol/sdk": "^1.27.0",
|
2026-01-12 15:00:36 +01:00
|
|
|
"adm-zip": "^0.5.16",
|
2026-01-22 16:09:36 +01:00
|
|
|
"better-sqlite3": "^12.6.2",
|
2026-01-09 11:37:03 +01:00
|
|
|
"body-parser": "2.2.2",
|
2025-12-14 12:23:59 +01:00
|
|
|
"chart.js": "^4.5.1",
|
2026-01-25 13:52:56 +01:00
|
|
|
"cheerio": "^1.2.0",
|
2026-03-08 09:55:46 +01:00
|
|
|
"@turf/boolean-point-in-polygon": "^7.3.4",
|
2025-07-19 20:10:19 +02:00
|
|
|
"cookie-session": "2.1.1",
|
2023-09-07 20:52:27 +02:00
|
|
|
"handlebars": "4.7.8",
|
2026-01-22 16:09:36 +01:00
|
|
|
"lodash": "4.17.23",
|
2026-03-08 09:55:46 +01:00
|
|
|
"maplibre-gl": "^5.19.0",
|
2025-09-22 20:53:00 +02:00
|
|
|
"nanoid": "5.1.6",
|
2025-09-13 17:06:18 +02:00
|
|
|
"node-cron": "^4.2.1",
|
2023-09-07 20:52:27 +02:00
|
|
|
"node-fetch": "3.3.2",
|
2025-11-01 10:46:55 +01:00
|
|
|
"node-mailjet": "6.0.11",
|
2025-11-16 19:59:08 +01:00
|
|
|
"p-throttle": "^8.1.0",
|
2024-12-17 13:07:25 +01:00
|
|
|
"package-up": "^5.0.0",
|
2026-03-08 09:55:46 +01:00
|
|
|
"puppeteer": "^24.38.0",
|
2024-12-17 12:38:28 +01:00
|
|
|
"puppeteer-extra": "^3.3.6",
|
|
|
|
|
"puppeteer-extra-plugin-stealth": "^2.11.2",
|
2025-09-18 20:09:11 +02:00
|
|
|
"query-string": "9.3.1",
|
2026-01-28 14:27:03 +01:00
|
|
|
"react": "19.2.4",
|
2025-12-14 12:23:59 +01:00
|
|
|
"react-chartjs-2": "^5.3.1",
|
2026-01-28 14:27:03 +01:00
|
|
|
"react-dom": "19.2.4",
|
2026-01-16 10:46:50 +01:00
|
|
|
"react-range-slider-input": "^3.3.2",
|
2026-03-08 09:55:46 +01:00
|
|
|
"react-router": "7.13.1",
|
|
|
|
|
"react-router-dom": "7.13.1",
|
|
|
|
|
"resend": "^6.9.3",
|
2025-08-25 21:14:45 +02:00
|
|
|
"restana": "5.1.0",
|
2026-02-16 12:30:59 +01:00
|
|
|
"semver": "^7.7.4",
|
2025-12-17 15:48:56 +01:00
|
|
|
"serve-static": "2.2.1",
|
2019-10-24 21:25:19 +02:00
|
|
|
"slack": "11.0.2",
|
2026-01-09 11:37:03 +01:00
|
|
|
"vite": "7.3.1",
|
2025-09-18 20:09:11 +02:00
|
|
|
"x-var": "^3.0.1",
|
2026-02-03 14:04:40 +01:00
|
|
|
"zustand": "^5.0.11"
|
2018-01-20 20:23:27 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-03 14:04:40 +01:00
|
|
|
"@babel/core": "7.29.0",
|
2026-01-16 10:46:50 +01:00
|
|
|
"@babel/eslint-parser": "7.28.6",
|
2026-02-03 14:04:40 +01:00
|
|
|
"@babel/preset-env": "7.29.0",
|
2025-11-01 10:46:55 +01:00
|
|
|
"@babel/preset-react": "7.28.5",
|
2026-02-16 12:59:34 +01:00
|
|
|
"@eslint/js": "^10.0.1",
|
2025-12-23 08:47:51 +01:00
|
|
|
"chai": "6.2.2",
|
2026-02-16 12:30:59 +01:00
|
|
|
"chalk": "^5.6.2",
|
2026-03-08 09:55:46 +01:00
|
|
|
"eslint": "10.0.3",
|
2025-08-31 20:09:38 +02:00
|
|
|
"eslint-config-prettier": "10.1.8",
|
2025-05-27 11:51:57 +02:00
|
|
|
"eslint-plugin-react": "7.37.5",
|
2025-09-18 15:38:23 +02:00
|
|
|
"esmock": "2.7.3",
|
2026-03-08 09:55:46 +01:00
|
|
|
"globals": "^17.4.0",
|
2022-03-09 14:28:13 +01:00
|
|
|
"history": "5.3.0",
|
2024-11-19 13:45:07 +01:00
|
|
|
"husky": "9.1.7",
|
2025-12-17 15:48:56 +01:00
|
|
|
"less": "4.5.1",
|
2026-03-08 09:55:46 +01:00
|
|
|
"lint-staged": "16.3.2",
|
2025-11-16 19:59:08 +01:00
|
|
|
"mocha": "11.7.5",
|
2026-03-08 09:55:46 +01:00
|
|
|
"nodemon": "^3.1.14",
|
2026-01-22 16:09:36 +01:00
|
|
|
"prettier": "3.8.1"
|
2018-01-20 20:23:27 +01:00
|
|
|
}
|
|
|
|
|
}
|