-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 4.06 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "stableunit_v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "StableUnitDAO core team",
"license": "MIT",
"scripts": {
"generate-types": "npx hardhat typechain",
"typecheck": "tsc --noEmit",
"compile": "hardhat compile",
"test": "npm run test:unit && npm run test:deployment && npm run test:integration",
"test:unit": "hardhat test test/unit-tests/*.test.ts",
"test:integration": "hardhat test test/integration-tests/*.test.ts",
"test:deployment": "hardhat test test/deployment-tests/*.test.ts",
"coverage": "npx hardhat coverage",
"deploy": "hardhat deploy",
"deploy:sepolia": "hardhat deploy --tags SuDAOTest --network sepolia",
"deploy-nft:goerli": "hardhat deploy --tags NFT --network goerli",
"deploy-nft:mumbai": "hardhat deploy --tags NFT --network mumbai",
"deploy-suDAO:goerli": "hardhat deploy --tags SuDAO --network goerli",
"deploy-suDAO:mumbai": "hardhat deploy --tags SuDAO --network mumbai",
"prepare-suDAO:goerli": "hardhat run ./scripts/prepare-lz-suDAO.ts --network goerli",
"prepare-suDAO:mumbai": "hardhat run ./scripts/prepare-lz-suDAO.ts --network mumbai",
"deploy:goerli": "hardhat deploy --tags Deployer --network goerli",
"verify:goerli": "hardhat run ./scripts/verifyEtherscan.ts --network goerli",
"verify:mumbai": "hardhat run ./scripts/verifyEtherscan.ts --network mumbai",
"upgrade:goerli": "hardhat run ./scripts/upgrade.ts --network goerli",
"upgrade-proposal:goerli": "hardhat run ./scripts/propose-upgrade.ts --network goerli",
"grant-og-legacy": "npx hardhat ogDistribution --address 0xfffffffff615bee8d0c7d329ebe0d444ab46ee5a --filename ./misc/ogNftAirdrop.txt --verbose",
"solhint": "solhint 'contracts/**/*.sol'",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"lint-staged": "lint-staged",
"clean-cache": "rm -rf ./artifacts && rm -rf ./cache"
},
"pre-commit": [
"clean-cache",
"compile",
"lint:fix",
"test"
],
"dependencies": {
"@balancer-labs/v2-interfaces": "^0.4.0",
"@balancer-labs/v2-pool-utils": "^4.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-defender": "^1.8.1",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@pendle/core-v2": "^2.29.1",
"@prb/math": "^2.5.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^6.1.6",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/web3": "^1.2.2",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"bn-chai": "^1.0.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"erc721a": "^4.2.3",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.2",
"ethers": "5.6.1",
"hardhat": "^2.15.0",
"hardhat-deploy": "^0.11.30",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^10.2.0",
"node-gyp": "^10.0.1",
"path": "^0.12.7",
"rlp": "^3.0.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"ts-node": "^9.1.1",
"typechain": "^5.2.0",
"typescript": "^4.2.3",
"web3": "^1.3.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"lint-staged": "^13.2.3",
"pre-commit": "^1.2.2",
"prettier": "^2.3.0"
},
"lint-staged": {
"**/*.ts?(x)": "tsc -p tsconfig.json --noEmit --skipLibCheck"
}
}