This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "xrp-api",
"version": "0.1.0",
"description": "An API server for the XRP Ledger",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "tsc-watch --onSuccess \"npm run serve\"",
"build": "tsc",
"watch": "tsc --watch",
"serve": "node dist/index.js",
"setup": "npm run build && node dist/setup/index.js",
"clean": "rm -r dist || true",
"test": "npm run build && mocha",
"coverage": "npm run build && nyc mocha",
"lint": "eslint ./ --ext .js,.ts"
},
"nodemonConfig": {
"watch": [
"dist",
"api-doc.yml",
".secret_config.js"
],
"ignore": [
"dist/**/*.spec.js"
],
"exec": "node dist/index.js"
},
"dependencies": {
"@types/got": "^9.6.9",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-openapi": "^6.0.0",
"got": "^9.6.0",
"log4js": "^6.1.2",
"ripple-address-codec": "^4.1.1",
"ripple-lib": "^1.6.6-beta.2",
"source-map-support": "^0.5.12",
"strip-json-comments": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.7.12",
"@types/sinon": "^7.0.12",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"chai": "^4.2.0",
"enquirer": "^2.3.2",
"eslint": "^6.8.0",
"handlebars": "^4.7.7",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"supertest": "^4.0.2",
"ts-mockito": "^2.3.1",
"ts-node": "^8.2.0",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.4.0"
}
}