forked from detoner777/telegram-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 939 Bytes
/
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
{
"name": "telegram-channel-scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pm2-runtime start ecosystem.config.js --env production",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdhass/telegram-scraper.git"
},
"author": "detoner",
"license": "ISC",
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.17.1",
"mtproto-storage-fs": "^0.3.1",
"node-fetch": "^2.2.0",
"pm2": "^4.5.1",
"prompt": "^1.0.0",
"ramda": "^0.25.0",
"socket.io": "^3.0.4",
"telegram-mtproto": "^2.2.2"
},
"devDependencies": {
"nodemon": "^2.0.6"
},
"nodemonConfig": {
"watch": [
"index"
],
"ext": "ts",
"ignore": [
"*.test.ts"
],
"delay": "3",
"execMap": {
"ts": "ts-node"
}
}
}