-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "piggyfi",
"version": "1.0.0",
"description": "![Piggy.Fi](https://drewhyte-west-1.s3.us-west-1.amazonaws.com/Piggy.fi.jpg)",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "5.3",
"truffle-assertions": "^0.9.2",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.3.6"
},
"devDependencies": {
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/truffle-upgrades": "^1.7.0",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier:solidity"
}
}
}