-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 2.03 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
{
"name": "iov-faucet",
"version": "0.10.0",
"description": "Typescript demo faucet",
"author": "IOV SAS <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"prebuild": "yarn format && yarn lint",
"build": "rm -rf build && tsc",
"test": "mocha \"./build/**/*.spec.js\"",
"dev-start": "FAUCET_MNEMONIC=\"degree tackle suggest window test behind mesh extra cover prepare oak script\" ./bin/iov-faucet start bns \"ws://localhost:23456\"",
"dev-lisk-start": "FAUCET_CREDIT_AMOUNT_LSK=5 FAUCET_CONCURRENCY=1 FAUCET_MNEMONIC=\"wagon fashion notice rough dinosaur physical mind waste until gun glass mixed\" ./bin/iov-faucet start lisk \"https://testnet.lisk.io\"",
"dev-ethereum-start": "FAUCET_CREDIT_AMOUNT_ETH=8 FAUCET_CONCURRENCY=3 FAUCET_MNEMONIC=\"oxygen fall sure lava energy veteran enroll frown question detail include maximum\" ./bin/iov-faucet start ethereum \"http://localhost:8545\""
},
"bin": {
"iov-faucet": "bin/iov-faucet"
},
"dependencies": {
"@iov/bns": "^1.2.0",
"@iov/crypto": "^1.2.0",
"@iov/ethereum": "^1.2.0",
"@iov/keycontrol": "^1.2.0",
"@iov/lisk": "^1.2.0",
"@iov/multichain": "^1.2.0",
"@koa/cors": "^2.2.2",
"@types/koa-bodyparser": "^4.2.1",
"bn.js": "^4.11.8",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1"
},
"devDependencies": {
"@types/bn.js": "^4.11.4",
"@types/chai": "^4.1.7",
"@types/koa": "^2.0.48",
"@types/mocha": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"mocha": "^5.2.0",
"prettier": "^1.18.2",
"typescript": "~3.7"
}
}