-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
40
{
"name": "marathons-bot",
"version": "3.0.3",
"main": "dist/index.js",
"author": "Martyn <zogacc@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "NODE_ENV=development node dist/index.js",
"build": "yarn && tsc",
"dev": "pm2 start pm2.dev.json && yarn logs",
"prod:start": "pm2-runtime start pm2.prod.json",
"restart": "pm2-runtime restart bot",
"kill": "pm2 kill",
"logs": "pm2 logs --lines=100",
"test": "jest --config jest.config.js"
},
"dependencies": {
"@google-cloud/local-auth": "2.1.0",
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"googleapis": "^107.0.0",
"prettier": "^2.7.1",
"telegraf": "^4.9.1",
"telegraf-googlesheets": "^0.5.1",
"telegraf-logfile": "^0.2.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"jest": "^29.0.3",
"pm2": "^5.2.0",
"ts-jest": "^29.0.5",
"typescript": "^4.8.3"
}
}