-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.95 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
{
"name": "hardhat-project",
"scripts": {
"start": "hardhat node",
"compile": "hardhat compile",
"deploy:localhost": "hardhat run scripts/deploy.ts --network localhost",
"deployJup:localhost": "hardhat run scripts/deploy_jup_apes.ts --network localhost",
"deployJup:testnet": "hardhat run scripts/deploy_jup_apes.ts --network goerli",
"deploy:testnet": "hardhat run scripts/deploy.ts --network goerli",
"deployProxy:localhost": "hardhat run scripts/deploy_proxy.ts --network localhost",
"deployProxy:testnet": "hardhat run scripts/deploy_proxy.ts --network goerli",
"test:proxy": "hardhat test test/MarketplaceProxyTest.ts",
"test:LedaNft": "hardhat test test/LedaNftTest.ts",
"test:JupApes": "hardhat test test/JupApesTest.ts",
"test:LazyLeda": "hardhat test test/LazyLedaTest.ts",
"test:upgrade": "hardhat test test/MarketplaceUpgradeTest.ts --network localhost",
"test": "hardhat test",
"upload:goerli":"npx hardhat run scripts/upload_jup_apes.ts --network goerli",
"test:LazyVoucher":"yarn test test/LazyJupsVoucher.ts --network localhost",
"test:VoucherGoerli":"yarn test test/LazyJupsVoucher.ts --network goerli"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/hardhat": "^6.1.4",
"ethers": "^5.7.2",
"hardhat": "2.11.2"
},
"dependencies": {
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@pinata/sdk": "^2.1.0",
"@typechain/ethers-v5": "^10.1.1",
"axios": "^1.2.1",
"dotenv": "16.0.2",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.1"
}
}