-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
131 lines (131 loc) · 3.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@rsksmart/rif-relay-server",
"version": "2.3.0-beta-boltz.8",
"private": false,
"description": "This project contains all the server code for the rif relay system.",
"license": "MIT",
"author": "RIF Payments Team",
"contributors": [
{
"name": "Raúl Laprida",
"url": "https://github.com/raullaprida"
},
{
"name": "Marcelo Ortelli",
"url": "https://github.com/mortelli"
},
{
"name": "Julian Len",
"url": "https://github.com/julianlen"
},
{
"name": "Wilson Hamilton",
"url": "https://github.com/wilsoniovlabs"
},
{
"name": "Antonio Morrone",
"url": "https://github.com/antomor"
},
{
"name": "Jose Jimenez",
"url": "https://github.com/jd-iov"
},
{
"name": "David Ugbero",
"url": "https://github.com/david-iov"
},
{
"name": "Juraj Piar",
"url": "https://github.com/jurajpiar"
},
{
"name": "Andrés Quijano",
"url": "https://github.com/AndresQuijano"
},
{
"name": "Francisco Tobar",
"url": "https://github.com/franciscotobar"
},
{
"name": "Christos Otarola",
"url": "https://github/ironFe93"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"predist": "node -p \"'export const SERVER_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"dist": "scripts/dist",
"format": "npx prettier \"{,test/**/}*.ts\" \"{,src/**/}*.ts\" !.gitignore --list-different --no-editorconfig",
"format:fix": "npm run format -- --write",
"lint": "npx eslint --cache \"{,test/**/}*.ts\" \"{,src/**/}*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "scripts/prepare",
"register": "ts-node src/commands/Register.ts",
"start": "ts-node src/commands/Start.ts",
"tdd": "npm run test -- --watch --watch-files src,test",
"test": "ALLOW_CONFIG_MUTATIONS=true npx mocha -r ts-node/register -r tsconfig-paths/register --extensions ts 'test/**/*.{test,spec}.ts'"
},
"lint-staged": {
"*": "npx embedme \"*.md\"",
"*.ts": [
"npm run format:fix",
"npm run lint:fix"
],
"package.json": "npx sort-package-json"
},
"dependencies": {
"@rsksmart/rif-relay-client": "2.2.6",
"@rsksmart/rif-relay-contracts": "2.1.1-beta.2",
"async-mutex": "^0.4.0",
"async-retry": "^1.3.3",
"bignumber.js": "^9.1.1",
"body-parser": "^1.20.1",
"config": "^3.3.9",
"cors": "^2.8.5",
"ethers": "5.7.2",
"express": "^4.18.2",
"joi": "^17.9.1",
"jsonrpc-lite": "^2.2.0",
"loglevel": "^1.8.1",
"nedb-async": "^0.1.6",
"ow": "~0.17.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@tsconfig/node16-strictest": "^1.0.4",
"@types/async-retry": "^1.4.5",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/mocha": "^10.0.1",
"@types/nedb": "^1.8.12",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"embedme": "^1.22.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.8.2"
}
}