forked from dovuofficial/hedera-hardhat-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "hardhat-project",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"lint": "npx prettier --check hardhat.config.js *.md 'contracts/**/*.sol' 'scripts/**/*.js' 'stub/**/*.js' 'support/**/*.js' 'test/**/*.js'",
"lint:fix": "npx prettier --write hardhat.config.js *.md 'contracts/**/*.sol' 'scripts/**/*.js' 'stub/**/*.js' 'support/**/*.js' 'test/**/*.js'",
"solhint": "solhint 'contracts/**/*.sol'",
"solhint:fix": "solhint --fix 'contracts/**/*.sol'"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.9.2",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7"
},
"dependencies": {
"@ethersproject/abi": "^5.6.1",
"@hashgraph/sdk": "^2.3.0",
"@openzeppelin/contracts": "^4.5.0",
"add": "^2.0.6",
"dotenv": "^14.3.2",
"hardhat-shorthand": "^1.0.0",
"module-alias": "^2.2.2",
"shelljs": "^0.8.5",
"uuid": "^8.3.2",
"yarn": "^1.22.17"
},
"_moduleAliases": {
"hashgraph-support": "support"
}
}