Files
fredy/package.json

116 lines
3.2 KiB
JSON
Raw Normal View History

2018-01-20 20:23:27 +01:00
{
"name": "fredy",
2026-01-06 08:13:39 +01:00
"version": "17.0.1",
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 .",
"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",
"copyright": "node ./copyright.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": {
2025-12-17 15:48:56 +01:00
"adm-zip": "^0.5.16",
2025-12-18 19:16:28 +01:00
"@douyinfe/semi-icons": "^2.89.1",
"@douyinfe/semi-ui": "2.89.1",
"@sendgrid/mail": "8.1.6",
"@vitejs/plugin-react": "5.1.2",
2025-12-04 09:58:58 +01:00
"better-sqlite3": "^12.5.0",
2025-11-27 15:54:54 +01:00
"body-parser": "2.2.1",
2025-12-14 12:23:59 +01:00
"chart.js": "^4.5.1",
2025-08-25 21:14:45 +02:00
"cheerio": "^1.1.2",
"cookie-session": "2.1.1",
2023-09-07 20:52:27 +02:00
"handlebars": "4.7.8",
2023-03-20 08:52:13 +01:00
"lodash": "4.17.21",
"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.34.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"query-string": "9.3.1",
"react": "18.3.1",
2025-12-14 12:23:59 +01:00
"react-chartjs-2": "^5.3.1",
"react-dom": "18.3.1",
2025-12-18 19:16:28 +01:00
"react-router": "7.11.0",
"react-router-dom": "7.11.0",
2025-08-25 21:14:45 +02:00
"restana": "5.1.0",
2025-10-07 21:06:59 +02:00
"semver": "^7.7.3",
2025-12-17 15:48:56 +01:00
"serve-static": "2.2.1",
"slack": "11.0.2",
2025-12-17 15:48:56 +01:00
"vite": "7.3.0",
"x-var": "^3.0.1",
2025-12-04 09:58:58 +01:00
"zustand": "^5.0.9"
2018-01-20 20:23:27 +01:00
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/eslint-parser": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-react": "7.28.5",
"chai": "6.2.2",
2025-12-14 12:23:59 +01:00
"eslint": "9.39.2",
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",
"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",
2025-11-27 15:54:54 +01:00
"lint-staged": "16.2.7",
2025-11-16 19:59:08 +01:00
"mocha": "11.7.5",
"nodemon": "^3.1.11",
2025-12-04 09:58:58 +01:00
"prettier": "3.7.4"
2018-01-20 20:23:27 +01:00
}
}