-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 2.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "validator-history-service",
"version": "0.7.1",
"description": "Service for ingesting, aggregating, storing, and disbursing validation related data",
"main": "./build/index.js",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"lint": "eslint . --ext .ts --max-warnings 0 --fix",
"lint:ci": "eslint . --ext .ts --max-warnings 0",
"startCrawlerDev": "ts-node-dev --transpile-only ./src/crawler/index.ts | ./node_modules/.bin/bunyan ",
"startApiDev": "ts-node-dev --transpile-only ./src/api/index.ts | ./node_modules/.bin/bunyan",
"startConnectionsDev": "ts-node-dev --transpile-only ./src/connection-manager/index.ts | ./node_modules/.bin/bunyan",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"build/**/*"
],
"bin": {
"validatorhistoryservice": "./bin/validatorhistoryservice"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripple/validator-history-service.git"
},
"author": "Mayur Bhandary, Nathan Nichols",
"license": "ISC",
"bugs": {
"url": "https://github.com/ripple/validator-history-service/issues"
},
"homepage": "https://github.com/ripple/validator-history-service#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/create-hash": "^1.2.2",
"@types/express": "4.17.21",
"@types/jest": "^26.0.19",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.20",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@xpring-eng/eslint-config-base": "^0.11.0",
"eslint": "^7.31.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.10",
"jest": "^26.6.3",
"nock": "13.5.1",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@maxmind/geoip2-node": "^4.1.0",
"@types/bunyan": "^1.8.7",
"axios": "^0.21.1",
"bunyan": "^1.8.15",
"create-hash": "^1.2.0",
"dotenv": "^16.3.1",
"express": "4.21.1",
"knex": "2.5.1",
"moment": "2.30.1",
"nconf": "^0.12.0",
"pg": "8.12.0",
"ripple-address-codec": "^5.0.0",
"ws": "^8.13.0",
"xrpl": "^2.13.0",
"xrpl-validator-domains": "0.1.0"
},
"directories": {
"test": "test"
}
}