-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "@cypherock/wallet",
"version": "3.0.1-beta.13",
"description": "All coin related operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json -c tslint.json --fix",
"lint:check": "tslint -p tsconfig.json -c tslint.json",
"pretty": "prettier --write 'src/**/*.ts'",
"pretty:check": "prettier --check 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Cypherock",
"license": "AGPL-3.0",
"dependencies": {
"@bitauth/libauth": "^1.19.1",
"@cypherock/communication": "3.0.1-beta.12",
"@cypherock/database": "3.0.1-beta.10",
"@cypherock/server-wrapper": "1.0.1-beta.7",
"@ethereumjs/common": "^2.6.2",
"@ethereumjs/tx": "^3.5.0",
"@types/bignumber.js": "^5.0.0",
"@types/bs58check": "^2.1.0",
"axios": "^0.25.0",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.2",
"bip32": "^2.0.6",
"bitcoinjs-lib": "^6.0.1",
"bs58check": "^2.1.2",
"coinselect": "^3.1.12",
"ethereum-input-data-decoder": "^0.3.5",
"ethers": "^5.5.4",
"node-cache": "^5.1.2",
"rlp": "^2.2.7",
"secp256k1": "^4.0.3",
"web3": "^1.7.0",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/nedb": "^1.8.12",
"@types/node": "^17.0.15",
"@types/serialport": "^8.0.2",
"@types/winston": "^2.4.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.2",
"typescript": "^4.5.5"
},
"files": [
"package.json",
"dist"
],
"lint-staged": {
"*.{ts,tsx}": [
"tslint -p tsconfig.json -c tslint.json --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}