-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.41 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
{
"name": "blank-nft",
"version": "0.0.1",
"author": "Blank Foundation",
"license": "UNLICENSED",
"scripts": {
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test",
"test:event-logs": "hardhat test --logs",
"contract-sizes": "yarn run hardhat size-contracts",
"deploy": "hardhat run scripts/deployBlankArt.js",
"deploy:hardhat": "yarn deploy -- --network hardat --force",
"persistent-test-network": "hardhat node",
"lint:sol": "solium --dir ./contracts",
"lint:sol:fix": "solium --dir ./contracts --fix",
"prettier:sol": "prettier --write 'contracts/*.sol'",
"prettier:js": "prettier --write 'scripts/*.js'"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"ethlint": "^1.2.5",
"hardhat": "^2.6.4",
"hardhat-abi-exporter": "^2.3.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"typechain": "^5.2.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2"
}
}