-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 3.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "boostpow-api",
"version": "0.3.0",
"private": false,
"description": "Boost Proof of Work Platform API at https://Pow.Co",
"scripts": {
"build": "npm run build --workspace=personal-interest",
"test": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha --require=ts-node/register --timeout=20000 --file src/test/setupTests.ts src/test/**/*_test.ts --exit",
"runtest": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha --require=ts-node/register --timeout=20000 --file src/test/setupTests.ts --exit $1",
"start": "ts-node src/main.ts",
"cover": "npm run cover:unit && npm run cover:integration && npm run cover:report",
"cover:unit": "nyc --silent npm run test:unit",
"cover:integration": "nyc --silent --no-clean npm run test:integration",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"db:migrate": "sequelize db:migrate --url=$DATABASE_URL",
"rabbi:init": "ts-node src/rabbi/init.ts"
},
"workspaces": [
"contracts/personal-interest"
],
"nyc": {
"check-coverage": false,
"extension": [
".ts",
".tsx"
],
"include": [
"src/**.ts",
"src/*.ts"
],
"exclude": [
"includes/**.ts"
],
"reporter": "lcov",
"report-dir": "./coverage"
},
"keywords": [
"proofofwork",
"bitcoin"
],
"author": "POWCO",
"license": "BSV",
"dependencies": {
"@aws-sdk/s3-presigned-post": "^3.388.0",
"@aws-sdk/s3-request-presigner": "^3.388.0",
"@aws-sdk/util-format-url": "^3.387.0",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"@koa/cors": "^3.1.0",
"@powco/smart-contracts": "^0.0.13",
"@runonbitcoin/easy-b": "^0.2.2",
"@runonbitcoin/tokenkit": "^1.1.0",
"@twetch/sdk": "^0.2.12",
"@types/axios": "^0.14.0",
"ascii-art": "^2.8.5",
"axios": "^1.2.1",
"bignumber.js": "^9.1.0",
"bitcoinjs-message": "^2.2.0",
"bmapjs": "^0.4.0-beta.21",
"boom": "^7.3.0",
"boostpow": "^1.5.0",
"bsv": "^1.5.5",
"bsv-2": "npm:bsv@^2.0.10",
"bsv-message": "^1.0.3",
"bsv-spv": "^0.5.7",
"btoa": "^1.2.1",
"commander": "^10.0.1",
"cross-fetch": "^3.1.7",
"delay": "^5.0.0",
"dotenv": "^16.0.3",
"eventsource": "^2.0.2",
"fastq": "^1.13.0",
"graphql-request": "^5.0.0",
"hapi-swagger": "^14.3.0",
"is-json": "^2.0.1",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"nconf": "^0.12.0",
"node-cron": "^3.0.2",
"pg": "^8.4.0",
"powco": "^1.2.2",
"prom-client": "^14.0.1",
"protobufjs": "^7.2.1",
"rabbi": "^1.21.4",
"redis": "^4.6.5",
"require-all": "^3.0.0",
"run-sdk": "^0.6.41",
"scrypt-ts": "^1.3.5",
"sequelize": "^6.26.0",
"snarkdown": "^2.0.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.2",
"split2": "^4.1.0",
"superagent": "^6.1.0",
"telegraf": "^4.4.2",
"through2": "^4.0.2",
"txo": "0.0.21",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-loki": "^6.0.6",
"ws": "^8.12.0"
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.6.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^8.10.66",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.2",
"msw": "^1.2.2",
"nyc": "^15.1.0",
"sequelize-cli": "^6.4.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
}
}