This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 506
/
package.json
74 lines (74 loc) · 2.22 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
{
"name": "matic-protocol",
"description": "New repo using Hardhat and Foundry",
"version": "0.3.2",
"main": "hardhat.config.cjs",
"type": "module",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "forge build",
"test:hardhat": "npx hardhat test",
"test:foundry": "forge test",
"test:ci": "scripts/run-test.sh",
"testrpc": "ganache --chain.hardfork istanbul --wallet.mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' -p 8545 --gasLimit 10000000 --gasPrice 0 --chain.allowUnlimitedContractSize --accounts 200",
"template:process": "node scripts/process-templates.cjs",
"coverage": "LOCAL_NETWORK=true npx hardhat coverage --solcoverjs .solcover.cjs",
"bor:simulate": "cd test-bor-docker && bash run-docker.sh",
"bor:stop": "cd test-bor-docker && bash stop-docker.sh",
"bor:clean": "cd test-bor-docker && bash clean.sh"
},
"keywords": [],
"author": "Jaynti Kanani <[email protected]>, Simon Dosch <[email protected]",
"license": "MIT",
"config": {
"mnemonics": "clock radar mass judge dismiss just intact mind resemble fringe diary casino"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.16",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-web3": "2.0.0",
"esm": "3.2.25",
"bip39": "^2.5.0",
"dotenv": "^16.3.1",
"ethereumjs-wallet": "1.0.2",
"eth-sig-util": "^2.1.1",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "1.1.3",
"solhint": "^3.6.2",
"solidity-coverage": "0.8.4",
"eslint": "^8.55.0"
},
"dependencies": {
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.0.0",
"ganache": "7.9.2",
"import-toml": "^1.0.0",
"merkle-patricia-tree": "^2.3.2",
"mocha": "10.2.0",
"nunjucks": "^3.2.0",
"openzeppelin-solidity": "2.2.0",
"solidity-rlp": "^2.0.0"
},
"eslintConfig": {
"env": {
"browser": false,
"es2022": true,
"mocha": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"globals": {
"web3": true
}
},
"mocha": {
"require": "hardhat/register",
"timeout": 40000000
}
}