-
-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·130 lines (130 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·130 lines (130 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "fredy",
"version": "22.9.7",
"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 ;)",
"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\"",
"format:check": "prettier --check \"**/*.js\"",
"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",
"lint": "eslint .",
"mcp:stdio": "node lib/mcp/stdio.js",
"lint:fix": "yarn lint --fix",
"migratedb": "node lib/services/storage/migrations/migrate.js",
"migratedb:overwrite": "x-var MIGRATION_ALLOW_CHECKSUM_UPDATE=true node lib/services/storage/migrations/migrate.js",
"copyright": "node ./copyright.js",
"release": "node ./tools/release/release.js"
},
"type": "module",
"lint-staged": {
"*.{js,jsx}": [
"yarn lint",
"yarn format",
"yarn copyright"
]
},
"resolutions": {
"vite": "8.1.0"
},
"main": "index.js",
"author": "Christian Kellner",
"keywords": [
"flat",
"flatfinder",
"fredy",
"real estates",
"germany",
"apartment",
"house",
"rent",
"immoscout",
"kleinanzeigen",
"scraper",
"immonet",
"immowelt",
"immobilienscout24"
],
"bugs": {
"url": "https://github.com/orangecoding/fredy/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0",
"npm": ">=7.0.0"
},
"browserslist": [
"> 0.5%",
"not dead",
"not ie 6-11",
"Firefox ESR"
],
"dependencies": {
"@douyinfe/semi-icons": "^2.100.0",
"@douyinfe/semi-ui": "2.100.0",
"@douyinfe/semi-ui-19": "^2.100.0",
"@fastify/cookie": "^11.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/session": "^11.1.1",
"@fastify/static": "^9.1.3",
"@mapbox/mapbox-gl-draw": "^1.5.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sendgrid/mail": "8.1.6",
"@turf/boolean-point-in-polygon": "^7.3.5",
"@vitejs/plugin-react": "6.0.3",
"adm-zip": "^0.5.18",
"better-sqlite3": "^12.11.1",
"chart.js": "^4.5.1",
"cheerio": "^1.2.0",
"cloakbrowser": "^0.4.5",
"fastify": "^5.9.0",
"handlebars": "4.7.9",
"maplibre-gl": "^5.24.0",
"nanoid": "5.1.16",
"node-cron": "^4.5.0",
"node-fetch": "3.3.2",
"node-mailjet": "6.0.11",
"nodemailer": "^9.0.3",
"p-throttle": "^8.1.0",
"package-up": "^5.0.0",
"puppeteer-core": "^25.2.1",
"query-string": "9.4.1",
"react": "19.2.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.7",
"react-range-slider-input": "^3.3.5",
"react-router": "7.18.0",
"react-router-dom": "7.18.0",
"resend": "^6.16.0",
"semver": "^7.8.5",
"slack": "11.0.2",
"vite": "8.1.0",
"x-var": "^3.0.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/eslint-parser": "8.0.1",
"@babel/preset-env": "8.0.2",
"@babel/preset-react": "8.0.1",
"@eslint/js": "^10.0.1",
"chalk": "^5.6.2",
"eslint": "10.6.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"globals": "^17.7.0",
"history": "5.3.0",
"husky": "9.1.7",
"less": "4.6.7",
"lint-staged": "17.0.8",
"nodemon": "^3.1.14",
"prettier": "3.9.4",
"vitest": "^4.1.9"
}
}