-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.96 KB
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
{
"name": "aavegotchi-contracts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"doctor": "node scripts/doctor.js",
"test": "npx hardhat test",
"test:swap": "npx hardhat test test/swapAndBuyERC721.test.ts --network hardhat",
"test:swap1155": "npx hardhat test test/swapAndBuyERC1155.test.ts --network hardhat",
"prettier": "prettier --write contracts/**/*.sol",
"solhint": "solhint 'contracts/**/*.sol'",
"check-props": "npx hardhat run scripts/analyze-snapshot-proposals.ts",
"deploy-props": "npx hardhat run scripts/deploy-pending-xp-drops.ts --network base",
"deploy-props:dry-run": "DRY_RUN=true npx hardhat run scripts/deploy-pending-xp-drops.ts --network hardhat",
"deploy-props:154-158": "AGIP_IDS=154-158 npx hardhat run scripts/deploy-pending-xp-drops.ts --network base",
"deploy-props:154-158:dry-run": "AGIP_IDS=154-158 DRY_RUN=true npx hardhat run scripts/deploy-pending-xp-drops.ts --network hardhat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aavegotchi/aavegotchi-contracts.git"
},
"author": "Nick Mudge",
"license": "MIT",
"bugs": {
"url": "https://github.com/aavegotchi/aavegotchi-contracts/issues"
},
"homepage": "https://github.com/aavegotchi/aavegotchi-contracts#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"chai": "^4.3.4",
"defender-relay-client": "^1.37.0",
"diamond-util": "^1.1.1",
"dotenv": "^8.2.0",
"ethers": "^5.5.4",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.3.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.7",
"solidity-coverage": "^0.7.21",
"standard": "^14.3.4",
"truffle-assertions": "^0.9.2",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"dependencies": {
"@anders-t/ethers-ledger": "^1.0.4",
"@chainlink/contracts": "^1.3.0",
"@ethersproject/experimental": "^5.4.0",
"@ethersproject/hardware-wallets": "https://github.com/mudgen/ethers-ledger",
"@graphprotocol/client-cli": "^3.0.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/defender-sdk": "^2.6.0",
"@types/mocha": "^9.0.0",
"alchemy-sdk": "^2.4.1",
"axios": "^0.21.1",
"csv-parser": "^3.0.0",
"git-branch": "^2.0.1",
"graphql": "^16.2.0",
"graphql-request": "^3.5.0",
"hardhat": "^2.22.5",
"merkletreejs": "^0.3.9",
"node-hid": "^2.1.1",
"solc": "^0.8.7-fixed",
"solmate": "^6.2.0"
}
}