forked from dievardump/EIP2981-implementation
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 673 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 673 Bytes
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
{
"name": "eip2981-example",
"version": "0.0.1",
"description": "EIP2981 implementation example",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test"
},
"author": "simon fremaux (dievarump)",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.0",
"hardhat-deploy": "^0.8.8",
"hardhat-deploy-ethers": "*",
"hardhat-tracer": "*"
}
}