-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.33 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.33 KB
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
{
"name": "reverso-protocol",
"version": "1.0.0",
"description": "The first reversible transaction protocol on blockchain - Never lose crypto to mistakes again",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:arbitrum": "hardhat run scripts/deploy.ts --network arbitrum",
"deploy:ethereum": "hardhat run scripts/deploy.ts --network ethereum",
"deploy:base": "hardhat run scripts/deploy.ts --network base",
"deploy:optimism": "hardhat run scripts/deploy.ts --network optimism",
"deploy:polygon": "hardhat run scripts/deploy.ts --network polygon",
"deploy:bsc": "hardhat run scripts/deploy.ts --network bsc",
"deploy:avalanche": "hardhat run scripts/deploy.ts --network avalanche",
"deploy:all": "hardhat run scripts/deploy-multichain.ts",
"verify": "hardhat verify",
"clean": "hardhat clean",
"lint": "solhint 'contracts/**/*.sol'",
"format": "prettier --write 'contracts/**/*.sol' 'scripts/**/*.ts' 'test/**/*.ts'"
},
"keywords": [
"ethereum",
"solidity",
"defi",
"reversible",
"transactions",
"security",
"blockchain",
"smart-contracts",
"arbitrum",
"multichain"
],
"author": "REVERSO Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Faraone-Dev/REVERSO.git"
},
"homepage": "https://reverso.one",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"chai": "^4.3.0",
"ethers": "^6.9.0",
"hardhat": "^2.28.2",
"hardhat-gas-reporter": "^1.0.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.2.0",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.0",
"typechain": "^8.3.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"dotenv": "^16.3.0"
}
}