forked from Danieo6/apartment-seeker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "apartment-seeker",
"version": "1.0.0",
"description": "A telegram bot searching for new flat rent offerts on OLX and OtoDom",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danieo6/apartment-seeker.git"
},
"keywords": [
"telegram bot",
"bot",
"webscraper"
],
"author": "Daniel Budziński",
"license": "MIT",
"bugs": {
"url": "https://github.com/Danieo6/apartment-seeker/issues"
},
"homepage": "https://github.com/Danieo6/apartment-seeker#readme",
"dependencies": {
"axios": "^0.21.2",
"axios-cookiejar-support": "^1.0.1",
"cheerio": "^1.0.0-rc.10",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"sqlite3": "^5.0.2",
"telegraf": "^4.4.1",
"tough-cookie": "^4.0.0",
"tunnel": "0.0.6"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/crypto-js": "^4.0.2",
"@types/node": "^16.4.12",
"@types/sqlite3": "^3.1.7",
"@types/tough-cookie": "^4.0.1",
"@types/tunnel": "0.0.3",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}