-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 892 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": "busd-bots",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"faucet": "npm run -s build && node --trace-warnings dist/faucet.js",
"start": "node --trace-warnings dist",
"prestart": "npm run -s build",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"dev": "nodemon -w src --exec \"babel-node src --presets es2015,stage-0\""
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-eslint": "^10.0.2",
"dotenv": "^6.2.0",
"node-telegram-bot-api": "^0.30.0",
"truffle-hdwallet-provider": "^1.0.14",
"web3": "^1.0.0-beta.55"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"nodemon": "^1.9.2"
}
}