-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "messagine-bot",
"version": "1.0.1",
"description": "Telegram chat bot https://t.me/MessagineBot",
"main": "handler.ts",
"author": "Messagine",
"license": "GPLv2",
"homepage": "https://github.com/messagine/messagine-bot#readme",
"scripts": {
"coverage": "nyc npm run test",
"dev": "dotenv -- nodemon -e ts -x ts-node src/lib/telegram.ts",
"invoke:createChat": "sls invoke local --function createChatJob",
"prettier": "prettier --write .",
"test": "ava test/* --serial",
"tslint": "tslint --project tsconfig.json"
},
"dependencies": {
"@sentry/node": "^6.2.1",
"@sentry/tracing": "^6.2.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.13",
"telegraf": "^3.38.0",
"telegraf-i18n": "^6.6.0",
"telegraf-mixpanel": "^1.0.0",
"telegraf-ratelimit": "^2.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.71",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.168",
"@types/sinon": "^9.0.11",
"ava": "^3.15.0",
"aws-lambda": "^1.0.6",
"debug": "^4.3.1",
"dotenv-cli": "^4.0.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier": "^2.2.0",
"serverless-plugin-typescript": "^1.1.9",
"sinon": "^10.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}