forked from myx-protocol/myx-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.87 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
{
"name": "myx",
"version": "1.0.0",
"description": "myx contract",
"types": "dist/types/helpers/index.d.ts",
"author": "myx",
"main": "dist/helpers/index.ts",
"scripts": {
"format": "prettier --check \"./**/*.ts\" README.md",
"format:fix": "prettier --write \"./**/*.ts\" README.md",
"sol:fix": "prettier --write \"./**/*.sol\" README.md",
"generate-types": "hardhat typechain",
"clean": "rm -rf artifacts/ types/ cache/",
"compile": "SKIP_LOAD=true npx hardhat compile",
"test": "yarn compile && npx hardhat test",
"test-file": "npx hardhat test test/__setup.spec.ts test/trade-limit.spec.ts",
"deploy": "npx hardhat deploy",
"coverage": "npx hardhat coverage --testfiles 'test/*.spec.ts'",
"sizer": "hardhat size-contracts",
"comment-out": "ts-node scripts/commentOutConsole.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@pythnetwork/pyth-evm-js": "^1.29.3",
"@pythnetwork/pyth-sdk-solidity": "^2.3.0",
"@types/mocha": "^10.0.1",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"buildcheck": "^0.0.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-no-only-tests": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.17.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.11.45",
"hardhat-log-remover": "^2.0.2",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"web3": "^4.1.1"
},
"dependencies": {
"@uniswap/v3-periphery": "^1.0.1",
"@chainlink/contracts": "^0.8.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "4.9.2",
"@openzeppelin/contracts-upgradeable": "4.9.2",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.2",
"@uniswap/v3-core": "^1.0.1",
"abi-decoder": "^2.4.0",
"csv-parse": "^5.4.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"solidity-coverage": "^0.8.4",
"typechain": "^8.3.0",
"typescript": "^5.0.4",
"alchemy-sdk": "^3.1.2"
}
}