-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.61 KB
/
package.json
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
{
"name": "wohnung-scraper",
"version": "0.2.0",
"description": "This tool scrapes several online real estate listing websites and visualizes offers in a map.",
"homepage": "https://www.github.com/sibbl/wohnung-scraper",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.1",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addons": "^7.0.18",
"@storybook/react": "^7.0.18",
"babel-loader": "^9.1.2",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.20.2",
"cheerio": "^0.22.0",
"concurrently": "^8.1.0",
"cron": "^2.3.1",
"db-migrate": "^0.11.13",
"db-migrate-sqlite3": "^0.5.0",
"express": "^4.18.2",
"geocoder": "^0.2.3",
"geolib": "^3.3.4",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"node-geocoder": "^4.2.0",
"node-telegram-bot-api": "^0.61.0",
"nodemon": "^2.0.22",
"playwright": "^1.34.3",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6"
},
"proxy": "http://localhost:3001",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently --names \"React,Express\" --prefix-colors \"green,blue\" \"react-scripts start\" \"nodemon server/index.js\"",
"dev:server": "nodemon server/index.js",
"server": "node server/index.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"axios": "^1.4.0",
"color-convert": "^2.0.1",
"d3": "^7.8.5",
"d3-geo": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"immer": "^10.0.2",
"leaflet": "^1.9.4",
"luxon": "^3.3.0",
"moment": "^2.29.4",
"protobufjs": "^7.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.9.0",
"react-leaflet": "^4.2.1",
"react-range-slider-input": "^3.0.7",
"react-redux": "^8.0.7",
"react-router-dom": "^6.11.2",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-query-sync": "^0.1.10",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.11"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"nodemonConfig": {
"ignore": [
"src/*"
]
}
}