-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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": "TODO",
"version": "1.0.0",
"description": "TODO",
"main": "",
"scripts": {
"test": "npm run compile && hardhat test",
"deploy": "npm run compile && node ./deploy/index.js && npm run verify",
"verify": "hardhat clean && hardhat --network rinkeby verify-contracts",
"compile": "hardhat compile",
"prettier": "prettier --write './contracts' ./test",
"lint": "solhint 'contracts/*.sol' && solhint 'contracts/**/*.sol' && eslint test/"
},
"repository": {
"type": "git",
"url": "TODO"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts"
],
"author": "Anna Carroll",
"license": "MIT",
"bugs": {
"url": "TODO"
},
"homepage": "TODO",
"dependencies": {
"@openzeppelin/contracts": "4.1.0",
"@openzeppelin/contracts-upgradeable": "4.1.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.4",
"ethers": "^5.0.29",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"ethereum-waffle": "^3.2.2",
"prettier": "2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint-plugin-prettier": "^0.0.5"
}
}