-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "@equationdao/equation-contracts",
"version": "1.0.0",
"authror": "Equation DAO",
"license": "BUSL-1.1",
"description": "Equation DAO contracts",
"keywords": [
"equation",
"ethereum"
],
"repository": {
"type": "git",
"url": "[email protected]:EquationDAO/equation-contracts.git"
},
"files": [
"contracts/**/*.sol",
"!contracts/test/*",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/test/**/*"
],
"bugs": {
"url": "https://github.com/EquationDAO/equation-contracts/issues"
},
"husky": {
"hooks": {
"pre-commit": "npx hardhat check && npx prettier --write ."
}
},
"scripts": {
"prepare": "npx husky install",
"test": "npx hardhat test",
"foundry-test": "forge test",
"build": "npx hardhat compile"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.10.0",
"husky": "^8.0.3",
"mocha-chai-jest-snapshot": "^1.1.4",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@uniswap/v4-core": "github:Uniswap/v4-core",
"solady": "^0.0.124"
}
}