-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1010 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
32
33
34
35
36
37
38
39
40
41
{
"name": "crypto-client-api",
"version": "1.0.0",
"description": "ETH, ERC20 TOKEN, BTC, LTC and XMR wallet api integration.",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node ./build/server.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"prod": "npm run build && forever start ./build/server.js"
},
"keywords": [
"web3.js",
"geth",
"bitcoin rpc",
"monero wallet rpc",
"litecoin rpc",
"express",
"node",
"typescript"
],
"author": "mitul lakhani <[email protected]>",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"forever": "^1.0.0",
"request": "^2.88.0",
"web3": "^1.2.1",
"bignumber.js": "^9.0.0",
"bitcoin-core": "^2.2.1",
"uuid": "^3.3.3",
"monero-rpc": "^0.5.0"
},
"devDependencies": {
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"nodemon": "^1.19.3"
}
}