-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 908 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
33
34
35
{
"name": "nb-telegram-bot",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix **/*.js"
},
"keywords": [
"bot",
"telegram",
"nodejs",
"cat"
],
"author": "Namila Bandara",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"node-telegram-bot-api": "^0.53.0"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.7"
}
}