forked from roziscoding/carbon-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "carbon-telegram-bot",
"version": "0.2.1",
"description": "Telegram Chatbot that generates carbon.now.sh images from source code",
"main": "dist/index.js",
"scripts": {
"start": "pm2-runtime start ecosystem.config.yml",
"test": "mocha -r tsnode/register -b test/**/*.test.ts --no-warnings",
"clean": "rm -rf tsconfig.tsbuildinfo && rm -rf dist",
"build:watch": "tsc -w",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"start:debug": "tsnd src/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rjmunhoz/carbon-telegram-bot.git"
},
"keywords": [
"telegram",
"carbon",
"syntax",
"hightlighing",
"development",
"presentation"
],
"author": "Rogério Munhoz <hello@rjmunhoz.me>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rjmunhoz/carbon-telegram-bot/issues"
},
"homepage": "https://github.com/rjmunhoz/carbon-telegram-bot#readme",
"dependencies": {
"@nindoo/mongodb-data-layer": "^2.0.5",
"@pm2/pm2-version-check": "^1.0.4",
"@sentry/integrations": "^5.6.1",
"@sentry/node": "^5.6.2",
"@types/node": "^12.7.2",
"mongodb": "^3.3.3",
"ngrok": "^3.2.5",
"pm2": "^5.1.2",
"puppeteer": "^1.19.0",
"sugar-env": "^1.5.7",
"telegraf": "^3.33.3",
"telegraf-inline-menu": "^4.0.0"
},
"devDependencies": {
"@types/mongodb": "^3.3.7",
"@types/puppeteer": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^4.0.3"
},
"peerDependencies": {
"nodemon": "^2.0.15"
}
}