-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.2 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
{
"name": "debio-staking-contracts",
"version": "0.0.1",
"description": "DeBio ERC20 staking contracts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:local": "npx hardhat run --network localhost scripts/deploy-contracts.js",
"deploy:debio": "npx hardhat run --network debio scripts/deploy-service-request-contract.js",
"deploy:rinkeby": "npx hardhat run --network rinkeby scripts/deploy-contracts.js",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/deploy-erc20-contract.js",
"inject-data:local": "npx hardhat run --network localhost scripts/inject-service-request-dummy-data.js",
"inject-data:rinkeby": "npx hardhat run --network rinkeby scripts/inject-service-request-dummy-data-rinkeby.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.3",
"hardhat": "^2.5.0",
"web3-utils": "^1.5.2"
},
"dependencies": {
"date-fns": "^2.23.0",
"dotenv": "^10.0.0",
"inquirer": "^8.2.0"
}
}