-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 902 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
{
"name": "whatever2telegram",
"version": "1.0.0",
"description": "Allows forwarding whatever you want to a Telegram handle",
"private": true,
"workspaces": [
"src/modules/*",
"src/formatters/*"
],
"scripts": {
"start": "node ./src/index.js",
"dev": "pm2-dev start ecosystem.config.js",
"build": "docker-compose build",
"push": "docker-compose push"
},
"author": "",
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.11.0",
"dotenv": "^8.2.0",
"node-telegram-bot-api": "^0.30.0",
"pm2": "^4.2.1",
"promise-sequential": "^1.1.1",
"striptags": "^3.2.0",
"tgfancy": "^0.13.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^1.19.1"
}
}