-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.47 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": "@bholdus/smart-contracts",
"version": "1.0.0",
"description": "Smart contracts written in Solidity for BHOLDUS",
"main": "index.js",
"scripts": {
"check": "hardhat check",
"test": "ln -s -f hardhat.config.test.ts hardhat.config.ts && hardhat test",
"gas-report": "env ENABLE_GAS_REPORT=true npm run test",
"node": "ln -s -f hardhat.config.dev.ts hardhat.config.ts && hardhat node --no-deploy --show-accounts"
},
"keywords": [
"bholdus",
"bho"
],
"author": "DPryde",
"license": "ISC",
"devDependencies": {
"@atixlabs/hardhat-time-n-mine": "0.0.5",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@polkadot/keyring": "^7.8.2",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.3",
"chai": "^4.3.4",
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"eth-gas-reporter": "^0.2.22",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.4.0",
"hardhat-deploy": "^0.9.14",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.3",
"@openzeppelin/contracts-upgradeable": "^4.3.3"
}
}