-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "xrpl-token-tracker-backend",
"version": "4.3.1",
"description": "tracks periodically the latest issued token on the xrp ledger (every 10 minutes)",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"develop": "tsc && concurrently \"tsc -w\" \"nodemon dist/server.js\"",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nixer89/xrpl-token-tracker-backend.git"
},
"keywords": [
"token",
"xrp",
"xrpl"
],
"author": "nixer89",
"license": "ISC",
"bugs": {
"url": "https://github.com/nixer89/xrpl-token-tracker-backend/issues"
},
"homepage": "https://github.com/nixer89/xrpl-token-tracker-backend#readme",
"dependencies": {
"log-timestamp": "^0.3.0",
"node-fetch": "^2.7.0",
"node-schedule": "^2.1.1",
"ripple-address-codec": "^4.3.1",
"xrpl": "^3.0.0",
"xrpl-client": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.9",
"@types/node-schedule": "^2.1.4",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"typescript": "^5.3.2"
}
}