-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "example-paymail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"lint": "ts-standard --fix src/**/*.ts",
"server": "npm run build && node dist/cjs/src/server.js",
"client": "npm run build && node dist/cjs/src/client.js",
"getProfile": "npm run build && node dist/cjs/src/client/getProfile.js",
"getPki": "npm run build && node dist/cjs/src/client/getPki.js",
"sendP2P": "npm run build && node dist/cjs/src/client/sendP2P.js",
"sendBeefP2P": "npm run build && node dist/cjs/src/client/sendP2PBeef.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@bsv/paymail": "^2.0.2",
"@bsv/sdk": "^1.0.11",
"@fireblocks/ts-sdk": "^3.1.0",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"jwt-simple": "^0.5.6",
"ts-standard": "^12.0.2"
},
"devDependencies": {
"@types/node": "^20.11.30"
}
}