-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 3.2 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
{
"name": "tapiocaz",
"scripts": {
"clean": "npx hardhat --config hardhat.export.ts clean",
"compile": "npx hardhat --config hardhat.export.ts compile",
"typechain": "npx hardhat --config hardhat.export.ts typechain",
"coverage": "npm run clean && npm run typechain && hh --config hardhat.export.ts coverage",
"gen:sdk": "npx hardhat exportSDK --network",
"deploy": "npx hardhat deploy --network",
"deploy:tapiocaWrapper": "hardhat deploy --tags TapiocaWrapper --network",
"deploy:tapiocaOft": "hardhat deploy --tags TapiocaOFT --network",
"deploy:rebalancing": "hardhat deploy --tags Rebalancing --network",
"contracts_size": "yarn compile && NODE_ENV=hardhat hardhat size-contracts",
"list": "npx hardhat listDeploy --network",
"erc20:mock": "npx hardhat run ./scripts/deployERC20.ts --network",
"size": "npx hardhat size-contracts",
"test": "npx hardhat test",
"prepare": "husky install",
"lint:ts": "eslint . --fix",
"lint:sol": "prettier --write \"./contracts/**/*.sol\" && solhint \"./contracts/**/*.sol\" --fix",
"lint": "npm run lint:ts && npm run lint:sol"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "https://github.com/boringcrypto/BoringSolidity#e0ff4a7771edfa09a90694c4e0f891938cf62a43",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.5.0",
"@rari-capital/solmate": "^6.4.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.185",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.7.0",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.9.6",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "^1.2.1",
"http-server": "^14.0.0",
"husky": "^8.0.3",
"mocha": "^9.1.3",
"prb-math": "^2.4.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.4",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.7.0",
"typechain": "^8.1.0",
"typescript": "^4.4.3",
"write-json-file": "4.3.0"
},
"dependencies": {
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@types/inquirer": "^9.0.3",
"@types/uuid": "^9.0.1",
"inquirer": "^8.2.5",
"load-json-file": "^7.0.1",
"lodash": "^4.17.21",
"tapioca-sdk": "^1.4.7",
"uuid": "^9.0.0"
}
}