-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "slpbot",
"version": "0.0.0",
"description": "SLP token tipping bot for Telegram powered",
"scripts": {
"clean": "rm -rf dist",
"tsc": "tsc",
"build": "npm run tsc",
"lint": "eslint --ext js,ts src",
"start": "node -r source-map-support/register -r dotenv/config dist/start.js",
"dev": "nodemon -w src -e ts -x 'ts-node -r dotenv/config src/start.ts'",
"db:create": "psql -c 'create database slpbot' postgres",
"db:migration": "ts-node ./node_modules/typeorm/cli -f ./src/models/ormconfig.ts"
},
"keywords": [
"telegram",
"tipping",
"bot",
"cryptocurrency",
"SLP",
"BCH"
],
"author": "Thomas Nguy <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.6",
"@types/node": "13.13.4",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-config-airbnb-typescript-prettier": "2.1.1",
"eslint-config-prettier": "6.11.0",
"prettier": "^1.18.2",
"ts-node": "8.9.1",
"typescript": "3.8.3"
},
"dependencies": {
"@types/lodash": "4.14.152",
"@types/qr-image": "3.2.2",
"bitbox-sdk": "^8.11.2",
"bitcore-lib-cash": "^8.20.4",
"body-parser": "1.19.0",
"dotenv": "8.2.0",
"guid-typescript": "^1.0.9",
"lodash": "4.17.15",
"p-memoize": "4.0.0",
"pg": "8.2.1",
"pg-migrate": "2.0.1",
"reflect-metadata": "0.1.13",
"slpjs": "^0.27.2",
"source-map-support": "0.5.19",
"telegraf": "3.38.0",
"typeorm": "0.2.25",
"typeorm-naming-strategies": "1.1.0"
}
}