Files
bch-dex/package.json
T

119 lines
3.5 KiB
JSON
Raw Normal View History

2022-02-23 05:51:12 -08:00
{
2022-02-23 06:09:04 -08:00
"name": "bch-dex",
2024-11-22 09:51:10 -08:00
"version": "3.0.0",
2022-02-23 06:09:04 -08:00
"description": "A DEX on BCH for trading SLP tokens.",
2022-02-23 05:51:12 -08:00
"main": "index.js",
2022-09-08 08:58:39 -07:00
"type": "module",
2022-02-23 05:51:12 -08:00
"scripts": {
"start": "node index.js",
"test": "npm run test:all",
"test:all": "export BCH_DEX=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/",
2022-02-23 06:09:04 -08:00
"test:unit": "export BCH_DEX=test && mocha --exit --timeout 15000 --recursive test/unit/",
"test:e2e:auto": "export BCH_DEX=test && mocha --exit --timeout 30000 test/e2e/automated/",
2022-03-09 09:37:17 -08:00
"test:integration": "export BCH_DEX=test && mocha --exit --timeout 45000 --recursive test/integration",
2022-02-23 06:09:04 -08:00
"test:temp": "export BCH_DEX=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/",
2022-02-23 05:51:12 -08:00
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"coverage:report": "export BCH_DEX=test && c8 --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/"
2022-02-23 05:51:12 -08:00
},
"author": "Chris Troutner <chris.troutner@gmail.com>",
"contributors": [
"Gary Nadir"
],
"license": "MIT",
"apidoc": {
2022-02-23 06:09:04 -08:00
"title": "bch-dex",
2022-02-23 05:51:12 -08:00
"url": "localhost:5000"
},
2022-02-23 06:09:04 -08:00
"repository": "Permissionless-Software-Foundation/bch-dex",
2022-02-23 05:51:12 -08:00
"dependencies": {
"@chainsafe/libp2p-gossipsub": "14.1.0",
"@chainsafe/libp2p-noise": "16.0.1",
"@chainsafe/libp2p-yamux": "7.0.1",
2024-11-25 14:11:21 -04:00
"@chris.troutner/retry-queue": "1.0.8",
"@helia/unixfs": "4.0.2",
"@libp2p/bootstrap": "11.0.26",
"@libp2p/circuit-relay-v2": "3.2.2",
"@libp2p/config": "1.1.0",
"@libp2p/identify": "3.0.22",
"@libp2p/keychain": "5.0.14",
"@libp2p/logger": "5.1.8",
"@libp2p/ping": "2.0.22",
"@libp2p/tcp": "10.1.2",
"@libp2p/webrtc": "5.2.2",
"@libp2p/websockets": "9.2.2",
"@multiformats/multiaddr": "12.3.5",
2022-06-19 13:19:31 -07:00
"axios": "0.27.2",
2022-09-04 14:38:11 -07:00
"bch-message-lib": "2.2.1",
2024-12-07 20:33:25 -08:00
"bch-nostr": "1.3.3",
2022-12-02 07:44:35 -08:00
"bch-token-sweep": "2.2.1",
2022-02-23 05:51:12 -08:00
"bcryptjs": "2.4.3",
"bitcoincashjs-lib": "3.3.3",
"blockstore-fs": "2.0.2",
"datastore-fs": "10.0.2",
2021-10-12 09:56:52 -07:00
"glob": "7.1.6",
"helia": "5.2.1",
"helia-coord": "1.7.2",
2024-11-25 14:11:21 -04:00
"ipfs-coord-esm": "9.1.7",
"ipfs-http-client": "58.0.0",
2022-02-23 05:51:12 -08:00
"jsonrpc-lite": "2.2.0",
"jsonwebtoken": "8.5.1",
"jwt-bch-lib": "1.3.0",
"kcors": "2.2.2",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-convert": "2.0.0",
"koa-generic-session": "2.1.1",
"koa-logger": "3.2.1",
"koa-mount": "4.0.0",
"koa-passport": "4.1.3",
"koa-router": "10.0.0",
"koa-static": "5.0.0",
"koa2-ratelimit": "0.9.1",
"libp2p": "2.7.2",
2022-02-23 05:51:12 -08:00
"line-reader": "0.4.0",
"minimal-slp-wallet": "5.13.2",
2022-06-19 13:19:31 -07:00
"mongoose": "5.13.14",
2022-02-23 05:51:12 -08:00
"node-fetch": "npm:@achingbrain/node-fetch@2.6.7",
2022-06-19 13:19:31 -07:00
"nodemailer": "6.7.5",
2024-12-16 05:29:03 -08:00
"nostr-tools": "2.10.4",
2022-12-02 21:10:18 -08:00
"p2wdb-esm": "2.2.9",
2022-02-23 05:51:12 -08:00
"passport-local": "1.0.0",
"public-ip": "6.0.1",
2022-02-23 05:51:12 -08:00
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0"
},
"devDependencies": {
2022-06-19 13:19:31 -07:00
"apidoc": "0.51.1",
"c8": "7.12.0",
2022-02-23 05:51:12 -08:00
"chai": "4.3.0",
"coveralls": "2.11.4",
"husky": "4.3.8",
"lodash.clonedeep": "4.5.0",
2022-06-19 13:19:31 -07:00
"mocha": "10.0.0",
"semantic-release": "19.0.3",
2022-02-23 05:51:12 -08:00
"sinon": "9.2.4",
"standard": "17.0.0",
2022-02-23 05:51:12 -08:00
"uuid": "8.3.2"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"standard": {
"ignore": [
"/test/unit/mocks/**/*.js"
]
}
}