2018-01-20 20:23:27 +01:00
{
2020-02-26 09:05:20 +01:00
"name" : "fredy" ,
2026-06-14 11:00:58 +02:00
"version" : "22.9.1" ,
2026-06-13 14:02:42 +02:00
"description" : "Fredy - [F]ind [R]eal [E]state [D]amn Eas[y] - Fredy keeps searching for new apartments, houses, and flats in Germany on platforms like ImmoScout24, Immowelt, Immonet, eBay Kleinanzeigen, and WG-Gesucht and instantly delivers the results to you via Slack, Telegram, Email, Discord or ntfy, so you can focus on the more important things in life ;)" ,
2018-01-20 20:23:27 +01:00
"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\"" ,
2026-04-21 13:37:00 +02:00
"test" : "x-var TEST_MODE=live vitest run" ,
"test:offline" : "x-var TEST_MODE=offline vitest run" ,
"test:download-fixtures" : "node tools/testFixtures/downloadFixtures.js" ,
2025-07-26 20:42:58 +02:00
"lint" : "eslint ." ,
2026-03-09 16:26:53 +01:00
"mcp:stdio" : "node lib/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" ,
2026-06-13 14:02:42 +02:00
"kleinanzeigen" ,
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-06-09 16:52:37 +02:00
"@douyinfe/semi-icons" : "^2.100.0" ,
"@douyinfe/semi-ui" : "2.100.0" ,
"@douyinfe/semi-ui-19" : "^2.100.0" ,
2026-04-27 16:56:04 +02:00
"@fastify/cookie" : "^11.0.2" ,
"@fastify/helmet" : "^13.0.2" ,
"@fastify/session" : "^11.1.1" ,
"@fastify/static" : "^9.1.3" ,
2026-03-08 09:44:18 +01:00
"@mapbox/mapbox-gl-draw" : "^1.5.1" ,
2026-03-31 10:38:50 +02:00
"@modelcontextprotocol/sdk" : "^1.29.0" ,
2025-09-22 09:57:50 +02:00
"@sendgrid/mail" : "8.1.6" ,
2026-04-20 10:14:26 +02:00
"@turf/boolean-point-in-polygon" : "^7.3.5" ,
2026-05-19 09:15:12 +02:00
"@vitejs/plugin-react" : "6.0.2" ,
2026-04-07 19:53:40 +02:00
"adm-zip" : "^0.5.17" ,
2026-06-14 11:00:58 +02:00
"better-sqlite3" : "^12.10.1" ,
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-06-02 09:26:46 +02:00
"cloakbrowser" : "^0.3.31" ,
2026-04-27 16:56:04 +02:00
"fastify" : "^5.8.5" ,
2026-03-31 10:38:50 +02:00
"handlebars" : "4.7.9" ,
2026-04-27 15:58:41 +02:00
"maplibre-gl" : "^5.24.0" ,
2026-05-01 20:12:40 +02:00
"nanoid" : "5.1.11" ,
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" ,
2026-06-10 17:11:49 +02:00
"nodemailer" : "^8.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-06-02 09:26:46 +02:00
"puppeteer-core" : "^25.1.0" ,
"query-string" : "9.4.0" ,
"react" : "19.2.7" ,
2025-12-14 12:23:59 +01:00
"react-chartjs-2" : "^5.3.1" ,
2026-06-02 09:26:46 +02:00
"react-dom" : "19.2.7" ,
2026-04-07 19:53:40 +02:00
"react-range-slider-input" : "^3.3.5" ,
2026-06-09 16:52:37 +02:00
"react-router" : "7.17.0" ,
"react-router-dom" : "7.17.0" ,
2026-06-02 09:26:46 +02:00
"resend" : "^6.12.4" ,
2026-06-10 17:11:49 +02:00
"semver" : "^7.8.4" ,
2019-10-24 21:25:19 +02:00
"slack" : "11.0.2" ,
2026-06-02 09:26:46 +02:00
"vite" : "8.0.16" ,
2025-09-18 20:09:11 +02:00
"x-var" : "^3.0.1" ,
2026-06-02 09:26:46 +02:00
"zustand" : "^5.0.14"
2018-01-20 20:23:27 +01:00
} ,
"devDependencies" : {
2026-06-02 09:26:46 +02:00
"@babel/core" : "7.29.7" ,
"@babel/eslint-parser" : "7.29.7" ,
"@babel/preset-env" : "7.29.7" ,
"@babel/preset-react" : "7.29.7" ,
2026-02-16 12:59:34 +01:00
"@eslint/js" : "^10.0.1" ,
2026-02-16 12:30:59 +01:00
"chalk" : "^5.6.2" ,
2026-06-13 13:34:13 +02:00
"eslint" : "10.5.0" ,
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" ,
2026-05-01 20:12:40 +02:00
"globals" : "^17.6.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" ,
2026-06-14 11:00:58 +02:00
"less" : "4.6.6" ,
2026-06-02 09:26:46 +02:00
"lint-staged" : "17.0.7" ,
2026-03-08 09:55:46 +01:00
"nodemon" : "^3.1.14" ,
2026-06-09 16:52:37 +02:00
"prettier" : "3.8.4" ,
2026-06-02 09:26:46 +02:00
"vitest" : "^4.1.8"
2018-01-20 20:23:27 +01:00
}
}