-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "wallet-api",
"private": true,
"version": "1.0.0",
"description": "Bitcoin wallet api service for generating secure SegWit and Multisig (P2SH) addresses",
"main": "src/api/index.js",
"scripts": {
"start": "node build/index.js",
"dev": "tsnd --respawn src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose --runInBand",
"prepare": "husky install",
"postinstall": "tsc"
},
"author": "Abdulhafiz A. Ahmed (http://twitter.com/abdhafizahmed)",
"license": "MIT",
"keywords": [
"bitcoin",
"cryptocurrency",
"crypto wallet",
"address generator"
],
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8"
},
"dependencies": {
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"compression": "^1.7.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"tiny-secp256k1": "^2.2.1",
"winston": "^3.6.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"engines": {
"node": "16.x"
}
}