forked from museum-of-nifty-art/monarepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
48
{
"name": "mona-exhibit-contracts",
"description": "Smart contracts of the MoNA project",
"version": "0.0.1",
"main": "",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"verify": "npx hardhat verify",
"prettier": "prettier --write 'contracts/**/*.sol'",
"lint": "prettier --list-different 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/museum-of-nifty-art/monarepo.git"
},
"keywords": [
"mona",
"nfts",
"marketplace",
"social",
"network",
"decentralized"
],
"author": [
"Denis Milicevic <[email protected]>",
"Riccardo Persiani <[email protected]>"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/museum-of-nifty-art/monarepo/issues"
},
"homepage": "https://github.com/museum-of-nifty-art/monarepo#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.4",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}