This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 4.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
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
{
"name": "assembly-nftmarketplace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"help": "npx hardhat help",
"accounts": "npx hardhat accounts",
"node:hh": "npx hardhat node",
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"compile": "npx hardhat compile",
"size": "npx hardhat size-contracts",
"xdeploy": "npx hardhat xdeploy",
"abi": "hardhat export-abi",
"deploy:hh": "npx hardhat run --network hardhat scripts/deploy.ts",
"deploy:localhost": "npx hardhat run --network localhost scripts/deploy.ts",
"deploy:rinkeby": "npx hardhat run --network rinkeby scripts/deploy.ts",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/deploy.ts",
"deploy:kovan": "npx hardhat run --network kovan scripts/deploy.ts",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:ethmain": "npx hardhat run --network ethMain scripts/deploy.ts",
"deploy:bsctestnet": "npx hardhat run --network bscTestnet scripts/deploy.ts",
"deploy:bscmain": "npx hardhat run --network bscMain scripts/deploy.ts",
"deploy:optimismtestnet": "npx hardhat run --network optimismTestnet scripts/deploy.ts",
"deploy:optimismmain": "npx hardhat run --network optimismMain scripts/deploy.ts",
"deploy:arbitrumtestnet": "npx hardhat run --network arbitrumTestnet scripts/deploy.ts",
"deploy:arbitrummain": "npx hardhat run --network arbitrumMain scripts/deploy.ts",
"deploy:mumbai": "npx hardhat run --network mumbai scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:hecotestnet": "npx hardhat run --network hecoTestnet scripts/deploy.ts",
"deploy:hecomain": "npx hardhat run --network hecoMain scripts/deploy.ts",
"deploy:fantomtestnet": "npx hardhat run --network fantomTestnet scripts/deploy.ts",
"deploy:fantommain": "npx hardhat run --network fantomMain scripts/deploy.ts",
"deploy:fuji": "npx hardhat run --network fuji scripts/deploy.ts",
"deploy:avalanche": "npx hardhat run --network avalanche scripts/deploy.ts",
"deploy:sokol": "npx hardhat run --network sokol scripts/deploy.ts",
"deploy:gnosis": "npx hardhat run --network gnosis scripts/deploy.ts",
"deploy:moonbasealpha": "npx hardhat run --network moonbaseAlpha scripts/deploy.ts",
"deploy:moonriver": "npx hardhat run --network moonriver scripts/deploy.ts",
"deploy:moonbeam": "npx hardhat run --network moonbeam scripts/deploy.ts",
"deploy:alfajores": "npx hardhat run --network alfajores scripts/deploy.ts",
"deploy:celo": "npx hardhat run --network celo scripts/deploy.ts",
"deploy:auroratestnet": "npx hardhat run --network auroraTestnet scripts/deploy.ts",
"deploy:auroramain": "npx hardhat run --network auroraMain scripts/deploy.ts",
"deploy:harmonytestnet": "npx hardhat run --network harmonyTestnet scripts/deploy.ts",
"deploy:harmonymain": "npx hardhat run --network harmonyMain scripts/deploy.ts",
"deploy:autobahn": "npx hardhat run --network autobahn scripts/deploy.ts",
"deploy:spark": "npx hardhat run --network spark scripts/deploy.ts",
"deploy:fuse": "npx hardhat run --network fuse scripts/deploy.ts",
"prettier:check": "prettier -c **/*.{js,ts,md,sol}",
"prettier:fix": "prettier --write **/*.{js,ts,md,sol}",
"solhint:check": "npx solhint 'contracts/*.sol'",
"solhint:fix": "npx solhint 'contracts/*.sol' --fix",
"lint:check": "yarn prettier:check && yarn solhint:check && npx eslint **/*.{js,ts}",
"lint:fix": "yarn prettier:fix && yarn solhint:fix && npx eslint **/*.{js,ts} --fix"
},
"devDependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.7.1",
"@manifoldxyz/libraries-solidity": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/contracts-upgradeable": "^4.2.0",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.9",
"lodash": "^4.17.15",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.4.0",
"typechain": "^8.1.0",
"typescript": "^4.8.3",
"xdeployer": "^1.1.1"
},
"dependencies": {}
}