-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "bitcoin-wallet-api",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dev": "nodemon --exec ts-node -- ./src/server.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReeceKidd/bitcoin-wallet-api.git"
},
"dependencies": {
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"tiny-secp256k1": "^2.2.1",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/swagger-ui-express": "^4.1.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"supertest": "^6.2.3",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReeceKidd/bitcoin-wallet-api/issues"
},
"homepage": "https://github.com/ReeceKidd/bitcoin-wallet-api#readme"
}