-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
39 lines (39 loc) · 1.05 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": "banofbot",
"version": "0.0.1",
"description": "Telegram bot to kick and ban users",
"main": "app.js",
"private": true,
"license": "MIT",
"engines": {
"node": ">=6.4"
},
"scripts": {
"start": "node app.js",
"localize": "node localize.js",
"upload-translations": "node scripts/upload.js",
"download-translations": "node scripts/download.js && yarn prettier --single-quote --no-semi --write ./helpers/localizations.js"
},
"dependencies": {
"bluebird": "^3.5.5",
"botanio": "0.0.6",
"dotenv": "^8.1.0",
"easy-file-manager": "^0.1.3",
"lodash": "^4.17.21",
"mongoose": "^5.7.0",
"node-telegram-bot-api": "^0.30.0",
"nodemon": "^1.19.2",
"semaphore-async-await": "^1.5.1"
},
"devDependencies": {
"axios": "^0.21.2",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"flat": "^5.0.0",
"prettier": "^2.0.5"
}
}