forked from tatumio/tatum-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.62 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
123
{
"name": "tatumio",
"version": "2.1.0",
"license": "MIT",
"repository": "https://github.com/tatumio/tatum-js",
"scripts": {
"start": "nx serve",
"build": "nx affected:build --skip-nx-cache",
"build:libs": "nx run-many --target=build --projects=$(nx affected:libs --plain --all cache | sed 's/ /,/g') --skip-nx-cache",
"build:prod": "nx affected:build --configuration=production --skip-nx-cache",
"build:all": "nx run-many --target=build --all --parallel --skip-nx-cache",
"build:all:prod": "nx run-many --target=build --configuration=production --all --parallel --skip-nx-cache",
"build:libs:prod": "nx run-many --target=build --configuration=production --skip-nx-cache --projects=$(nx affected:libs --plain --all cache | sed 's/ /,/g')",
"test:ci": "nx run-many --target=test --all --parallel --max-parallel=3 --coverage --coverageReporters=lcov && node ./tools/coverageMerger.js --skip-nx-cache",
"lint": "nx affected:lint --parallel --skip-nx-cache",
"lint:all": "nx run-many --target=lint --all --parallel --skip-nx-cache",
"format": "nx format:write",
"test": "nx affected:test --parallel --skip-nx-cache",
"dep-graph": "nx dep-graph",
"generate-api": "openapi --exportCore false --useUnionTypes true --client axios --input ./packages/api-client/src/api_schema.json --output ./packages/api-client/src/generated",
"release:current": "nxpm release $(./scripts/package-version.sh) --ci --fix",
"release:apply-version": "nxpm release $(./scripts/package-version.sh) --fix --dry-run || true",
"version:alpha": "npm --tag-version-prefix='' --no-git-tag-version version prerelease",
"version:patch": "npm --no-git-tag-version version patch",
"version:minor": "npm --no-git-tag-version version minor",
"nx:fix": "node tools/scripts/nx-dts-after-build-fix.js",
"prepare": "husky install",
"patch:dependencies": "patch-package --patch-dir=tools/patches",
"postinstall": "yarn patch:dependencies"
},
"dependencies": {
"@binance-chain/javascript-sdk": "^4.1.1",
"@celo-tools/celo-ethers-wrapper": "^0.1.0",
"@elrondnetwork/erdjs": "^9.2.4",
"@harmony-js/crypto": "^0.1.56",
"@metaplex-foundation/mpl-auction-house": "^2.3.0",
"@metaplex-foundation/mpl-token-metadata": "^2.5.0",
"@onflow/config": "^1.0.5",
"@onflow/fcl": "^1.3.2",
"@onflow/sdk": "^1.1.2",
"@onflow/types": "^1.0.5",
"@onflow/util-encode-key": "^1.0.3",
"@solana/spl-token": "0.3.6",
"@solana/web3.js": "1.56.2",
"@tatumio/bitcoincashjs2-lib": "^4.1.2",
"algosdk": "^1.13.1",
"axios": "^0.26.0",
"base-58": "^0.0.1",
"base32.js": "^0.1.0",
"bignumber.js": "^9.0.2",
"bip32": "^2.0.5",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"bitcore-lib-cash": "^8.25.40",
"bitcore-lib": "8.25.8",
"bitcore-lib-doge": "8.25.7",
"bitcore-lib-ltc": "8.25.27",
"bn.js": "^5.2.1",
"cashaddrjs": "^0.4.4",
"caver-js": "1.8.2",
"coininfo": "^5.1.0",
"cross-blob": "^3.0.1",
"dedent-js": "^1.0.1",
"ed25519-hd-key": "^1.2.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.5.4",
"form-data": "^4.0.0",
"hdkey": "^2.0.1",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"ripple-lib": "^1.7.1",
"sha3": "^2.1.4",
"stellar-sdk": "^9.1.0",
"tronweb": "^4.1.0",
"tslib": "^2.0.0",
"url-parse": "^1.5.10",
"web3": "^1.7.4",
"web3-core": "^1.7.4",
"web3-eth": "^1.7.4",
"web3-utils": "^1.7.4"
},
"devDependencies": {
"@nrwl/cli": "14.8.4",
"@nrwl/eslint-plugin-nx": "14.8.4",
"@nrwl/jest": "14.8.4",
"@nrwl/js": "14.8.4",
"@nrwl/linter": "14.8.4",
"@nrwl/node": "14.8.4",
"@nrwl/nx-cloud": "15.0.0",
"@nrwl/workspace": "14.8.4",
"@types/bignumber.js": "^5.0.0",
"@types/bip32": "^2.0.0",
"@types/bip39": "^3.0.0",
"@types/bitcore-lib": "^0.15.3",
"@types/cashaddrjs": "^0.3.0",
"@types/elliptic": "^6.4.14",
"@types/hdkey": "^2.0.1",
"@types/jest": "28.1.8",
"@types/node": "18.7.1",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.3.0",
"expect-more-jest": "^5.4.0",
"faker": "^5.5.3",
"ganache": "^7.5.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "28.1.3",
"nx": "14.8.4",
"openapi-typescript-codegen": "^0.12.5",
"patch-package": "^6.2.0",
"prettier": "2.7.1",
"replace-in-file": "^6.3.5",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"resolutions": {
"@solana/web3.js": "1.56.2"
}
}