-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
63 lines (63 loc) · 1.6 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
58
59
60
61
62
63
{
"name": "lnp2pbot",
"version": "0.11.0",
"author": "Francisco Calderón <[email protected]>",
"description": "P2P lightning network telegram bot",
"main": "app.js",
"scripts": {
"prestart": "npx tsc",
"start": "node ./app",
"predev": "npx tsc",
"dev": "nodemon ./app",
"lint": "eslint .",
"format": "prettier --write '**/*.js'",
"pretest": "npx tsc",
"test": "export NODE_ENV=test && mocha --exit tests/**/*.spec.js"
},
"license": "MIT",
"dependencies": {
"@grammyjs/i18n": "^0.5.1",
"@grammyjs/ratelimiter": "^1.1.5",
"axios": "^1.7.4",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"invoices": "2.0.6",
"lightning": "9.8.1",
"mongoose": "6.12.0",
"node-schedule": "^2.0.0",
"nostr-tools": "^2.5.2",
"qrcode": "^1.5.0",
"socks-proxy-agent": "^6.2.0-beta.0",
"telegraf": "^4.6.0",
"websocket-polyfill": "0.0.3",
"winston": "^3.7.2"
},
"keywords": [
"lightning",
"telegram",
"bot",
"p2p",
"network"
],
"devDependencies": {
"@types/node": "^20.5.0",
"@types/qrcode": "^1.5.2",
"@types/node-schedule": "^2.1.0",
"chai": "^4.3.4",
"chokidar": "^3.5.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.2",
"nodemon": "2.0.19",
"prettier": "^2.6.2",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"telegram-test-api": "^2.5.0",
"typegram": "^5.2.0",
"typescript": "5.1.6"
}
}