Files
fredy/package.json

128 lines
3.7 KiB
JSON
Raw Normal View History

2018-01-20 20:23:27 +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": {
"prepare": "husky",
"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",
"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",
"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",
"lint": "eslint .",
2026-03-09 15:35:29 +01:00
"mcp:stdio": "node mcp/stdio.js",
"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"
},
"type": "module",
"lint-staged": {
"*.{js,jsx}": [
"yarn lint",
2025-12-11 10:40:55 +01:00
"yarn format",
"yarn copyright"
]
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",
"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",
"engines": {
"node": ">=22.0.0",
"npm": ">=7.0.0"
},
"browserslist": [
"> 0.5%",
"not dead",
"not ie 6-11",
"Firefox ESR"
],
2018-01-20 20:23:27 +01:00
"dependencies": {
"@douyinfe/semi-icons": "^2.92.2",
"@douyinfe/semi-ui": "2.92.2",
"@douyinfe/semi-ui-19": "^2.92.2",
"@mapbox/mapbox-gl-draw": "^1.5.1",
"@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",
"adm-zip": "^0.5.16",
"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",
"@turf/boolean-point-in-polygon": "^7.3.4",
"cookie-session": "2.1.1",
2023-09-07 20:52:27 +02:00
"handlebars": "4.7.8",
"lodash": "4.17.23",
"maplibre-gl": "^5.19.0",
"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",
"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",
"puppeteer": "^24.38.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"query-string": "9.3.1",
"react": "19.2.4",
2025-12-14 12:23:59 +01:00
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.4",
2026-01-16 10:46:50 +01:00
"react-range-slider-input": "^3.3.2",
"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",
"slack": "11.0.2",
2026-01-09 11:37:03 +01:00
"vite": "7.3.1",
"x-var": "^3.0.1",
"zustand": "^5.0.11"
2018-01-20 20:23:27 +01:00
},
"devDependencies": {
"@babel/core": "7.29.0",
2026-01-16 10:46:50 +01:00
"@babel/eslint-parser": "7.28.6",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
2026-02-16 12:59:34 +01:00
"@eslint/js": "^10.0.1",
"chai": "6.2.2",
2026-02-16 12:30:59 +01:00
"chalk": "^5.6.2",
"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",
"esmock": "2.7.3",
"globals": "^17.4.0",
"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",
"lint-staged": "16.3.2",
2025-11-16 19:59:08 +01:00
"mocha": "11.7.5",
"nodemon": "^3.1.14",
"prettier": "3.8.1"
2018-01-20 20:23:27 +01:00
}
}