forked from fireblocks/fireblocks-xrp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 977 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 977 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
{
"name": "fireblocks-xrp-sdk",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"start:api": "node dist/api/server.js",
"dev:api": "ts-node src/api/server.ts",
"generate-swagger": "ts-node ./swagger-autogen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@fireblocks/ts-sdk": "^10.1.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"lodash.isequal": "^4.5.0",
"ripple-binary-codec": "^2.6.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"xrpl": "^4.3.0"
}
}