-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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": "blockchain-explorer-telegram-bot",
"version": "0.1.0",
"description": "Blockchain explorer Telegram bot",
"main": "lib/bot.js",
"scripts": {
"build": "flow-remove-types -p src/ -d dist/",
"buildDev": "npm run removeTypes && npm run eslint",
"start": "node dist/bot.js",
"test": "mocha --exit",
"flow": "flow",
"eslint": "eslint . --fix --ignore-pattern node_modules/"
},
"keywords": [],
"author": "nnqq",
"license": "MIT",
"dependencies": {
"blockchain.info": "^2.12.1",
"etherscan-api": "^10.0.0",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"pino": "^5.8.1",
"reconnecting-websocket": "^4.1.10",
"sequelize": "^5.3.0",
"telegraf": "^3.25.0",
"ws": "^6.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"flow-bin": "^0.89.0",
"flow-remove-types": "^1.2.3",
"mocha": "^5.2.0",
"semver": "^6.3.0"
}
}