-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.6 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
{
"name": "hestia",
"version": "1.0.0",
"description": "A one-stop shop to Create, Sell and Showcase your Artwork aiming to democratize the control and pricing of assets by Harberger Taxes.",
"scripts": {
"compile": "npx hardhat compile",
"deploy:local": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy:matic": "npx hardhat run scripts/deploy.js --network matic",
"deploy:bsc": "npx hardhat run scripts/deploy.js --network bsc",
"client": "npx static-server ./client -p 80",
"test": "npx hardhat test",
"flatten": "npx hardhat flatten ./contracts/HestiaSuperApp.sol > flat.sol",
"check": "npm run test && npm run deploy:local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hestia/contracts.git"
},
"author": "Anudit Nagar",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/hestia/contracts/issues"
},
"homepage": "https://github.com/hestia/contracts#readme",
"dependencies": {
"@chainlink/contracts": "^0.1.6",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.0-solc-0.7",
"@superfluid-finance/ethereum-contracts": "^0.2.8",
"@superfluid-finance/js-sdk": "^0.3.5",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.31",
"hardhat": "^2.0.11",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-gas-reporter": "^1.0.4"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10"
}
}