-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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
{
"name": "eons",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"deploy:hardhat": "npx hardhat run --network localhost scripts/deploy.js",
"deploy:kovan": "npx hardhat run --network kovan scripts/deploy.js",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.js",
"deploy:binanceTestnet": "npx hardhat run --network binanceTestnet scripts/deploy-binance-testnet.js",
"deploy:binanceMainnet": "npx hardhat run --network binanceMainnet scripts/deploy-binance-mainnet.js",
"verify:kovan": "node scripts/verify-kovan.js",
"verify:mainnet": "node scripts/verify-mainnet.js",
"verify:binanceTestnet": "node scripts/verify-binance-testnet.js",
"verify:binanceMainnet": "node scripts/verify-binance-mainnet.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ALQO-Universe/eons.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ALQO-Universe/eons/issues"
},
"homepage": "https://github.com/ALQO-Universe/eons#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"chai": "^4.3.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.3.0",
"hardhat": "^2.0.10"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.2.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^8.2.0",
"fs": "0.0.1-security"
}
}