-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "hermes",
"version": "0.4.1",
"description": "Project Hermes: XRPL Validation message service",
"main": "index.js",
"author": "Anurag",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.6.7",
"@grpc/proto-loader": "^0.6.13",
"chalk": "^4.1.2",
"cli-table3": "^0.6.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"grpc-tools": "^1.12.4",
"mongodb": "^4.8.1",
"mongoose": "^6.4.4",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"npmlog": "^6.0.2",
"selfsigned": "^2.0.1",
"xrpl": "^2.3.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@types/npmlog": "^4.1.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"grpc_tools_node_protoc_ts": "^5.3.2",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
},
"scripts": {
"lint": "eslint .",
"build": "npm run proto:build && npx tsc -b",
"start": "node dist/index.js",
"ingress": "node dist/cmd/ingress/index.js",
"proto:build": "./bin/build-protos.sh",
"dev": "concurrently 'npm run proto:build' 'npx tsc --watch' 'nodemon -q dist/index.js' ",
"peer": "node dist/cmd/peer/index.js",
"keypair": "node dist/cmd/keypair/index.js",
"online-delete": "node dist/cmd/online-delete/index.js"
}
}