forked from defi-org-code/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 852 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
{
"name": "hardhat-template",
"version": "0.0.1",
"description": "",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/defi-org-code/hardhat-template.git"
},
"homepage": "https://github.com/defi-org-code/hardhat-template#readme",
"license": "MIT",
"author": "DeFi.org",
"main": "index.js",
"scripts": {
"clean": "rm -rf artifacts cache",
"prettier": "prettier --write '{contracts,src,test}/**/*.{ts,js,json,sol}'",
"typechain": "hardhat typechain",
"prebuild": "npm run prettier && npm run typechain",
"build": "hardhat compile && solhint 'contracts/**/*.sol'",
"test": "DEBUG=web3-candies hardhat test --logs",
"deploy": "hardhat deploy --network $1"
},
"devDependencies": {
"@defi.org/web3-candies": "3.x"
},
"prettier": {
"printWidth": 180
}
}