forked from simpleledger/slp-post-office-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "simpleledger-post-office-server",
"version": "0.0.2",
"description": "SLP Post Office Server",
"main": "./build/app.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --poll ./src/app.ts",
"start:production": "tsc && node ./build/src/app.js",
"build": "tsc",
"test": "tsc && nyc mocha -r ts-node/register ./test/*",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleledger/slp-post-office-server.git"
},
"keywords": [
"slp",
"bch",
"bitcoin",
"post",
"office",
"tokens"
],
"author": "Andre Cabrera ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/simpleledger/slp-post-office-server/issues"
},
"homepage": "https://github.com/simpleledger/slp-post-office-server#readme",
"dependencies": {
"@types/bitcore-lib-cash": "^8.23.5",
"@types/express": "^4.17.3",
"@types/mocha": "^8.2.3",
"async-mutex": "^0.3.1",
"axios": "^0.21.1",
"bchaddrjs-slp": "^0.2.14",
"bignumber.js": "^9.0.1",
"bitcore-lib-cash": "^9.0.0",
"bitcore-payment-protocol": "^8.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"electrum-cash": "^2.0.7",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"grpc-bchrpc-node": "^0.15.2",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"ts-node-dev": "^1.1.8",
"tslog": "^3.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/node": "^16.3.3",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"sinon": "^11.1.1",
"typescript": "^4.3.5"
}
}