-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "telegram-bot",
"version": "1.0.0",
"description": "Quick Servlerless telegram bot",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/serverless offline -s dev",
"debug": "node --inspect ./node_modules/.bin/serverless offline -s dev",
"debug-verbose": "export SLS_DEBUG=* && npm run debug",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmaid/telegram-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kmaid/telegram-bot/issues"
},
"homepage": "https://github.com/kmaid/telegram-bot#readme",
"devDependencies": {
"@types/node": "^14.0.11",
"@types/aws-lambda": "^8.10.53",
"@types/node-fetch": "^2.5.7",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-offline": "^6.4.0",
"serverless-plugin-typescript": "^1.1.9",
"serverless": "^1.72.0",
"typescript": "^3.9.5"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}