-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "decert-contracts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@openzeppelin/contracts": "^4.7.1",
"base64-sol": "^1.1.0",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.17",
"hardhat": "^2.0.11",
"hardhat-abi-exporter": "^2.10.1"
},
"scripts": {
"chain": "hardhat node",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy_and_init.js",
"coverage": "hardhat coverage --network hardhat"
}
}