Files
fredy/package.json

116 lines
2.8 KiB
JSON
Raw Normal View History

2018-01-20 20:23:27 +01:00
{
"name": "fredy",
2025-08-31 20:25:52 +02:00
"version": "11.4.4",
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\"",
"test": "mocha --loader=esmock --timeout 60000 test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"type": "module",
"lint-staged": {
"*.{js,jsx}": [
"yarn lint",
"yarn format"
]
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"
},
"license": "MIT",
"engines": {
2024-07-24 09:39:27 +02:00
"node": ">=20.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-09-02 20:18:37 +02:00
"@douyinfe/semi-ui": "2.86.0",
"@rematch/core": "2.2.0",
"@rematch/loading": "2.1.2",
"@sendgrid/mail": "8.1.5",
2025-08-31 20:12:46 +02:00
"@vitejs/plugin-react": "5.0.2",
"better-sqlite3": "^12.2.0",
"body-parser": "2.2.0",
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",
"highcharts": "12.3.0",
"highcharts-react-official": "3.2.2",
2023-03-20 08:52:13 +01:00
"lodash": "4.17.21",
2025-08-31 20:15:23 +02:00
"lowdb": "7.0.1",
"markdown": "^0.5.0",
"mixpanel": "^0.18.1",
"nanoid": "5.1.5",
2023-09-07 20:52:27 +02:00
"node-fetch": "3.3.2",
2025-08-25 21:14:45 +02:00
"node-mailjet": "6.0.9",
2025-08-31 18:41:46 +02:00
"p-throttle": "^8.0.0",
2024-12-17 13:07:25 +01:00
"package-up": "^5.0.0",
2025-09-02 20:18:37 +02:00
"puppeteer": "^24.18.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"query-string": "9.2.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.2.0",
2025-09-02 20:18:37 +02:00
"react-router": "7.8.2",
"react-router-dom": "7.8.2",
"redux": "5.0.1",
"redux-thunk": "3.1.0",
2025-08-25 21:14:45 +02:00
"restana": "5.1.0",
2025-05-27 12:01:26 +02:00
"serve-static": "2.2.0",
"slack": "11.0.2",
"string-similarity": "^4.0.4",
2025-09-02 20:18:37 +02:00
"vite": "7.1.4",
"x-var": "^2.1.0"
2018-01-20 20:23:27 +01:00
},
"devDependencies": {
2025-08-25 21:14:45 +02:00
"@babel/core": "7.28.3",
"@babel/eslint-parser": "7.28.0",
"@babel/preset-env": "7.28.3",
"@babel/preset-react": "7.27.1",
2025-08-31 18:46:23 +02:00
"chai": "6.0.1",
2025-08-31 20:09:38 +02:00
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
2025-05-27 11:51:57 +02:00
"eslint-plugin-react": "7.37.5",
2025-09-02 20:18:37 +02:00
"esmock": "2.7.2",
"history": "5.3.0",
2024-11-19 13:45:07 +01:00
"husky": "9.1.7",
2025-08-25 21:14:45 +02:00
"less": "4.4.1",
2025-09-02 20:18:37 +02:00
"lint-staged": "16.1.6",
"mocha": "11.7.2",
"nodemon": "^3.1.10",
"prettier": "3.6.2",
2022-12-19 21:49:47 +01:00
"redux-logger": "3.0.6"
2018-01-20 20:23:27 +01:00
}
}