This repository was archived by the owner on Oct 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.87 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.87 KB
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
{
"name": "bitcoin-api",
"version": "1.0.0",
"main": "index.js",
"author": "Wladimir <wladimir.code@gmail.com>",
"title": "blockchain",
"description": "Node.js RESTful API for bitcoin blockchain",
"license": "MIT",
"keywords": [
"blockchain",
"bitcoin",
"api",
"cryptocurrency"
],
"repository": {
"type": "git",
"url": "https://github.com/bitchain/bitcoin.git"
},
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist",
"dev:server": "tsnd -r tsconfig-paths/register --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts",
"dev:debug": "tsnd -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts",
"lint": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@rocketseat/eslint-config": "^2.1.0",
"@types/bitcore-lib": "^0.15.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.56.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.15.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"axios": "^1.6.5",
"bitcoinjs-lib": "^5.2.0",
"bitcore-lib": "^8.25.47",
"celebrate": "^13.0.4",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"reflect-metadata": "^0.1.14",
"tsyringe": "^4.8.0"
}
}