-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
129 lines (129 loc) · 4.17 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
{
"name": "@rsksmart/rif-relay-contracts",
"version": "2.1.1-beta.2",
"private": false,
"description": "This project contains all the contracts needed 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": {
"prebuild": "npm run clean",
"build": "hardhat compile --force",
"postbuild": "tsc --project tsconfig.build.json",
"ci:format": "prettier -c contracts/**/*.sol && prettier -c **/*.ts",
"ci:lint": "solhint 'contracts/**/*.sol' && eslint test --ext .ts ",
"preci:test": "npm run build",
"ci:test": "npm run test",
"clean": "rm -rf typechain-types cache bin dist artifacts contracts-exposed",
"postclean": "hardhat clean",
"compile": "npm run clean && hardhat compile --force",
"docs": "hardhat docgen",
"format": "npm run format:sol && npm run format:ts",
"format:fix": "npm run format:fix:sol && npm run format:fix:ts",
"format:fix:sol": "npm run format:sol -- --write",
"format:fix:ts": "npm run format:ts -- --write",
"format:sol": "prettier --list-different --no-editorconfig \"{,contracts/**/}*.sol\"",
"format:ts": "prettier --list-different --no-editorconfig \"{,tasks/**/}*.ts\" \"{,test/**/}*.ts\" \"{,scripts/**/}*.ts\" index.ts",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:fix": "npm run lint:fix:sol && npm run lint:fix:ts",
"lint:fix:sol": "npm run lint:sol -- --fix",
"lint:fix:ts": "npm run lint:ts -- --fix",
"lint:sol": "solhint \"{,contracts/**/}*.sol\"",
"lint:ts": "npx eslint --cache \"{,tasks/**/}*.ts\" \"{,test/**/}*.ts\" \"{,scripts/**/}*.ts\"",
"prepare": "./scripts/prepare.npm",
"pretdd": "npm run build",
"tdd": "TEST=true REPORT_GAS=true hardhat watch tdd",
"test": "TEST=true REPORT_GAS=true hardhat test"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"package.json": "npx sort-package-json"
},
"dependencies": {
"@metamask/eth-sig-util": "^4.0.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@openzeppelin/contracts": "^3.4.0",
"hardhat": "^2.10.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-docgen": "^1.3.0",
"hardhat-watcher": "^2.5.0",
"sinon": "^14.0.0",
"typechain": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@defi-wonderland/smock": "^2.2.0",
"@openzeppelin/contracts": "^3.4.0",
"@tsconfig/node16-strictest": "^1.0.4",
"@types/node": "^18.8.3",
"@types/seedrandom": "^3.0.5",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.33.1",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"seedrandom": "^3.0.5",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"peerDependencies": {
"ethers": "^5.7.0",
"typescript": "4.8.2"
}
}