-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1003 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1003 Bytes
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
{
"name": "chaintracks-server",
"version": "1.0.2",
"description": "TypeScript Express server wrapping ChaintracksService from @bsv/wallet-toolbox",
"main": "dist/server.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:test": "CHAIN=test node dist/server.js",
"start:custom": "node dist/server-custom.js",
"start:prefix": "node dist/server-with-prefix.js",
"dev": "ts-node src/server.ts",
"dev:test": "CHAIN=test ts-node src/server.ts",
"clean": "rm -rf dist"
},
"keywords": [
"bsv",
"bitcoin",
"blockchain",
"chaintracks",
"headers",
"express",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@bsv/wallet-toolbox": "^1.6.26",
"body-parser": "^1.20.2",
"dotenv": "^17.2.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}