-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
31 lines (31 loc) · 1001 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
{
"name": "game-checkers-bot",
"version": "2.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "jest",
"dev": "node ./src/index.js",
"daemon": "yarn daemon:run",
"daemon:run": "NODE_ENV=production pm2 start ./src/index.js --name game-checkers-bot --log './logs/current.log'",
"daemon:stop": "yarn pm2 stop game-checkers-bot 2> /dev/null",
"start": "node ./src/index.js production",
"lint": "eslint --ext .js, ./src/"
},
"author": "m0ksem <[email protected]>",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"eslint-config-airbnb-base": "^15.0.0",
"jest": "^29.1.1",
"mongodb": "^4.10.0",
"pm2": "^5.2.0",
"telegraf": "^3.40.0",
"telegram-bot-action-handlers": "git+https://github.com/m0ksem/telegram-bot-action-handlers.git#0.1"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4"
}
}