-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
58 lines (58 loc) · 2.17 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
{
"name": "ante-community-tests",
"license": "UNLICENSED",
"description": "Repository for community AnteTest contributions",
"devDependencies": {
"@chainlink/contracts": "^0.2.2",
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.17",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin-contracts-old/contracts": "npm:@openzeppelin/contracts@^3.4.1",
"@openzeppelin-contracts-old/contracts-upgradeable": "npm:@openzeppelin/contracts-upgradeable@^3.4.1",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.2",
"@ribbon-finance/rvol": "^1.4.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "^2.13.0",
"hardhat-foundry": "^0.0.5",
"husky": "^7.0.0",
"husky-init": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"pretty-quick": "^3.1.1",
"ts-node": "^10.2.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"dependencies": {
"hardhat-abi-exporter": "^2.2.1",
"hardhat-gas-reporter": "^1.0.4"
},
"scripts": {
"prepare": "husky install",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"compile": "npx hardhat compile",
"test": "npx hardhat typechain && npx hardhat test",
"node": "npx hardhat node",
"deploy-test": "npx hardhat run scripts/deploy_test.ts",
"deploy-zk-test": "npx hardhat deploy-zksync --script deploy/deploy_zk_test.ts"
}
}