-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 907 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
33
34
{
"name": "CryptoBatz",
"version": "1.0.0",
"description": "A NFT project by Sutter Systems",
"license": "None",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"clean": "hardhat clean",
"prettier": "prettier --write contracts/**/*.sol"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"chai": "^4.3.4",
"erc721a": "^3.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.7",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"node-fetch": "^3.0.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"printWidth": 80,
"bracketSpacing": true
}
}