-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 926 Bytes
/
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": "apillon-contracts",
"version": "0.0.1",
"description": "Smart contract for Apillon.",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"build": "npx hardhat compile",
"flatten": "npx hardhat flatten",
"coverage": "npx hardhat coverage"
},
"author": "Mitja Kjuder",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.17.1",
"hardhat-abi-exporter": "^2.3.1",
"hardhat-contract-sizer": "^2.1.1",
"solidity-coverage": "^0.8.4"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@rmrk-team/evm-contracts": "^2.0.0"
}
}