-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "mieszkania_bot_parser",
"version": "0.1.0",
"description": "Telegram bot that helps to find an apartment in Poland",
"main": "none",
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node build/index.js",
"start:dev": "NODE_ENV=development ts-node src/index.ts",
"start:test": "NODE_ENV=test ts-node src/index.ts"
},
"keywords": [
"telegram",
"bot",
"mieszkania",
"poland",
"heroku"
],
"author": "Denis Bezak",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^16.0.0",
"lodash.deburr": "^4.1.0",
"lodash.differencewith": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mongoose": "^6.2.7",
"telegraf": "^4.9.1"
},
"devDependencies": {
"@types/lodash.deburr": "^4.1.7",
"@types/lodash.differencewith": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16.x"
}
}