-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 937 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
{
"name": "grammy-bot-template",
"version": "1.0.0",
"description": "Telegram bot template with grammy.js",
"main": "index.js",
"scripts": {
"dev": "nodemon -r dotenv/config build/index.js dotenv_config_path=./config.env",
"start": "node -r dotenv/config build/index.js dotenv_config_path=./config.env",
"build": "tsc"
},
"keywords": [],
"author": "Aleksandr Gordeiko",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"grammy": "^1.6.2",
"mongoose": "^5.13.2",
"nodemon": "^2.0.7",
"typegram": "^3.7.0",
"typescript": "^4.3.4",
"@types/node": "^15.12.4",
"@types/mongoose": "^5.11.97",
"@typegoose/typegoose": "^7.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-typescript": "^0.14.0"
}
}