-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "telegram-notify-bot-serverless",
"version": "1.0.0",
"description": "telegram bot running on AWS serverless services",
"scripts": {
"build": "npm run clean && node ./esbuild",
"clean": "rimraf coverage build tmp",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"test": "jest --env=node ./test",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Mohamed Muhannad <https://github.com/muhannad0>",
"license": "MIT",
"dependencies": {
"@pulumi/aws": "^4.7.0",
"@pulumi/awsx": "^0.30.0",
"@pulumi/pulumi": "^3.4.0",
"telegraf": "^4.3.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.77",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"esbuild": "^0.12.8",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.0.1",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"telegram-test-api": "^2.5.0",
"tsutils": "^3.21.0",
"typescript": "^4.3.2"
}
}