-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "xrpl-services-backend",
"version": "5.1.2",
"description": "provides a generic backend, connected to xumm. Easy access of user tokens for push",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"develop": "tsc && concurrently \"tsc -w\" \"nodemon dist/server.js\"",
"build": "tsc",
"postinstall": "sh ./src/doc/updateSwaggerVersion.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nixer89/xrpl-services-backend.git"
},
"keywords": [
"xumm",
"xrp",
"xrpl"
],
"author": "nixer89",
"license": "ISC",
"bugs": {
"url": "https://github.com/nixer89/xrpl-services-backend/issues"
},
"homepage": "https://github.com/nixer89/xrpl-services-backend#readme",
"dependencies": {
"@fastify/compress": "^6.5.0",
"@fastify/cors": "^8.4.1",
"@fastify/helmet": "^11.1.1",
"@fastify/middie": "^8.3.0",
"@fastify/rate-limit": "^9.0.0",
"device-detector-js": "^2.2.10",
"fastify": "^4.24.3",
"ioredis": "^5.3.2",
"log-timestamp": "^0.3.0",
"mongodb": "^3.7.4",
"node-fetch": "^2.6.6",
"node-schedule": "^2.1.1",
"verify-xrpl-signature": "^4.1.5",
"xrpl": "^2.14.0",
"xumm-sdk": "^1.10.1"
},
"devDependencies": {
"@types/mongodb": "^3.6.20",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.5.12",
"@types/node-schedule": "^2.1.3",
"concurrently": "^5.3.0",
"nodemon": "^2.0.15",
"typescript": "^5.2.2"
}
}