This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.83 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
78
79
80
81
82
83
84
85
{
"name": "angel-protocol-evm",
"version": "1.0.0",
"description": "Angel Protocol EVM smart contracts, testing and deployment suite.",
"scripts": {
"preinstall": "npx only-allow yarn",
"format": "prettier --write './{config,contracts,eth-sdk,scripts,tasks,test,utils}/**/*.{ts,js,sol}'",
"fork": "bash ./fork.sh",
"test": "hardhat test",
"compile": "bash ./compile.sh",
"deploy": "hardhat compile && hardhat deploy:AngelProtocol",
"sdks": "yarn eth-sdk",
"tsc": "tsc"
},
"engines": {
"node": "18.x",
"yarn": "1.22.x"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.3.5",
"@dethcrypto/eth-sdk": "^0.3.4",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^11.1.1",
"@typechain/hardhat": "^7.0.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^5.7.2",
"hardhat": "^2.17.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-storage-layout": "^0.1.7",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^4.0.3",
"@chainlink/contracts": "^0.6.1",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@tenderly/hardhat-tenderly": "^1.7.7",
"@uniswap/v3-core": "github:AngelProtocolFinance/uniswap-v3-core#fullmath-fix",
"@uniswap/v3-periphery": "^1.4.3",
"dotenv": "^16.3.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"mockdate": "^3.0.5",
"readline-sync": "^1.4.10",
"simple-git": "^3.19.1",
"web3": "^4.0.3"
},
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"packageManager": "[email protected]"
}