-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.35 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
{
"name": "hardhat-starter-kit",
"license": "MIT",
"version": "2.1.1",
"description": "A repo for boilerplate code for testing, deploying, and shipping chainlink solidity code.",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test test/unit/*.spec.js",
"test-staging": "hardhat test test/staging/*.spec.js --network sepolia",
"deploy": "hardhat run scripts/deployment/main.js",
"deploy:base": "hardhat run scripts/deployment/main.js --network base",
"deploy:sepolia": "hardhat run scripts/deployment/main.js --network baseSepolia",
"deploy:local": "hardhat run scripts/deployment/main.js --network localhost",
"deploy:degen": "hardhat run scripts/deployment/main.js --network degen",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"fuzzing": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"chai": "^4.4.1",
"ethers": "^5.7.2",
"hardhat": "^2.22.4",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.12",
"typechain": "^8.1.0"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.7",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/merkle-tree": "^1.0.6",
"@prb/math": "^4.0.2",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@uniswap/v3-sdk": "^3.13.0",
"abdk-libraries-solidity": "^3.2.0",
"bignumber.js": "^9.1.2",
"dotenv": "^16.0.3",
"jsbi": "^4.3.0",
"solmate": "^6.2.0"
},
"lint-staged": {
"*.{js,json,yml,yaml}": [
"prettier --write"
],
"*.sol": [
"prettier --write",
"solhint"
]
}
}