-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
123 lines (123 loc) · 3.53 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
{
"name": "@rsksmart/rif-relay",
"version": "2.0.0",
"description": "RIF Relay - Integration tests",
"homepage": "https://github.com/rsksmart/rif-relay#readme",
"bugs": {
"url": "https://github.com/rsksmart/rif-relay/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rif-relay.git"
},
"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": "",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"analyze:gas": "npx hardhat run scripts/GasEstimation.ts --network",
"prebuild": "hardhat clean",
"build": "hardhat compile --force",
"format": "prettier --list-different --no-editorconfig \"{,test/**/}*.ts\" \"{,scripts/**/}*.ts\" \"**/*.yml\"",
"format:fix": "npm run format -- --write",
"lint": "npx eslint --cache \"{,test/**/}*.ts\" \"{,scripts/**/}*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "utils/prepare.npm",
"test": "ALLOW_CONFIG_MUTATIONS=true NODE_CONFIG_DIR='node_modules/@rsksmart/rif-relay-server/config:config' TEST=true REPORT_GAS=true hardhat test --typecheck",
"test:docker": "utils/test"
},
"lint-staged": {
"*.ts": [
"npm run format:fix",
"npm run lint:fix"
],
"package.json": "npx sort-package-json"
},
"dependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@metamask/eth-sig-util": "^5.0.2",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@openzeppelin/contracts": "^3.4.0",
"@rsksmart/rif-relay-client": "github:rsksmart/rif-relay-client",
"@rsksmart/rif-relay-contracts": "github:rsksmart/rif-relay-contracts",
"@rsksmart/rif-relay-server": "github:rsksmart/rif-relay-server",
"@tsconfig/node16-strictest": "^1.0.4",
"@types/config": "^3.3.0",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"body-parser": "^1.20.2",
"chai-as-promised": "^7.1.1",
"config": "^3.3.9",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "5.7.0",
"express": "^4.18.2",
"hardhat": "^2.12.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nock": "^13.3.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/sinon-chai": "^3.2.10",
"axios": "^1.6.7",
"sinon": "^16.0.0",
"sinon-chai": "^3.7.0"
}
}