-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.51 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": "open-art-market-smart-contracts",
"version": "0.1.0",
"description": "Open Art Market Official Smart Contract",
"author": "ignacioceaglio@protonmail.com",
"keywords": [
"ethereum",
"smart",
"contracts",
"test",
"solidity",
"hardhat"
],
"dependencies": {
"@remix-project/remixd": "^0.5.5",
"dotenv": "^10.0.0"
},
"scripts": {
"server": "source ./.node_env && npx hardhat node",
"build:mac": "source ./.node_env && npx hardhat compile",
"build": "npx hardhat compile",
"test": "npx hardhat test",
"test:mac": "source ./.node_env && npx hardhat test",
"deploy:local": "source ./.node_env && npx hardhat run scripts/deploy.js --network localhost",
"deploy:test": "source ./.node_env && npx hardhat run scripts/deploy.js --network mumbai",
"deploy:live": "source ./.node_env && npx hardhat run scripts/deploy.js --network matic"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/hardhat-upgrades": "*",
"chai": "^4.3.4",
"chai-bn": "^0.3.0",
"ethereum-waffle": "3.3.0",
"ethers": "^5.5.2",
"gh-pages": "^2.2.0",
"hardhat": "^2.6.7",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "1.0.4",
"hardhat-preprocessor": "0.1.3",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solidity-coverage": "^0.7.17"
}
}