-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "CryptoWallet",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"start-worker": "node ./workers/index.js",
"update-ripple-wallet": "node ./command-executor/rippleExecutor.js -update",
"generate-ripple-wallet": "node ./command-executor/rippleExecutor.js -generate",
"encrypt": "node ./command-executor/encryptWallet.js",
"fix-address": "node ./schedulers/userAddressScheduler.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"coinpayments": "^2.2.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"ethers": "^4.0.47",
"express": "^4.18.2",
"mongoose": "^7.4.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"ripple-keypairs": "^1.3.1",
"ripple-lib": "^1.10.1",
"trongrid": "^1.2.6",
"tronweb": "^4.2.0",
"web3": "^4.2.2",
"web3-eth-abi": "^4.1.4",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"winston-transport-sentry-node": "^2.7.0",
"workerpool": "^9.0.4",
"xrpl": "^2.14.0"
}
}