-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.27 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
{
"name": "bitcoin-litecoin-to-ethereum-mapping-collector",
"version": "2.0.0",
"description": "We collect bitcoin/litecoin addresses, ethereum (BBK payout) addresses and signatures, verifying the user truly is the owner of said bitcoin/litecoin address",
"main": "src/index.js",
"author": "Martin Josefsson <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"start": "yarn migrate && NODE_ENV=production flow-node ./src/index.js",
"start:dev": "nodemon --config nodemon.json --watch ./src -e js",
"migrate": "./scripts/shmig -H $MYSQL_HOST -d $MYSQL_DATABASE -t mysql -l $MYSQL_USERNAME -p $MYSQL_PASSWORD up",
"test": "yarn run flow && tape -r 'flow-remove-types/register' src/**/*.spec.js",
"precommit": "yarn flow"
},
"dependencies": {
"bitcoinjs-message": "^2.0.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"crypto-address-checker": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"fetch-everywhere": "^1.0.5",
"flow-remove-types": "^1.2.3",
"mysql": "^2.15.0",
"ramda": "^0.25.0",
"squel": "^5.12.0"
},
"devDependencies": {
"flow-bin": "^0.61.0",
"husky": "0.14.3",
"nodemon": "^1.14.11",
"prettier": "^1.8.2",
"tap-dot": "^1.0.5",
"tape": "^4.8.0"
}
}