-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 2 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
{
"name": "crypto-rpc",
"version": "1.1.0",
"description": "rpc wrapper for multiple rpcs",
"main": "index.js",
"scripts": {
"build": "docker compose build",
"start": "npm run stop && npm run build && docker compose run start",
"restart": "npm run stop && docker compose run start",
"stop": "docker compose down",
"compile": "npm run lint && npm run truffle:compile",
"migrate": "npm run compile && npm run truffle:migrate",
"lint": "npx eslint .",
"test": "npm run test:ci",
"test:ci": "docker-compose down && docker-compose build && docker-compose run test_runner",
"test:local": "npm run stop && npm run build && docker compose run test_runner",
"docker:test": "npm run migrate && npm run truffle:test && mocha --recursive ./tests",
"truffle:compile": "cd blockchain/EVM/ && ../../node_modules/.bin/truffle compile --network development_geth && ../../node_modules/.bin/truffle compile --network development_matic",
"truffle:test": "cd blockchain/EVM/ && ../../node_modules/.bin/truffle test --network development_geth && ../../node_modules/.bin/truffle test --network development_matic",
"truffle:migrate": "cd blockchain/EVM/ && ../../node_modules/.bin/truffle migrate --network development_geth && ../../node_modules/.bin/truffle migrate --network development_matic"
},
"author": "Micah Riggan",
"license": "ISC",
"dependencies": {
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.91.8",
"bitcoind-rpc": "0.9.1",
"commander": "2.8.1",
"dogecoind-rpc": "0.8.1",
"ethers": "5.7.2",
"lightning": "10.0.1",
"promptly": "0.2.0",
"web3": "1.7.1",
"xrpl": "^2.6.0"
},
"devDependencies": {
"assert": "^1.4.1",
"chai": "^4.2.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^5.2.0",
"sinon": "^7.3.1",
"truffle": "5.1.0"
}
}