-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 964 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
30
31
32
33
34
{
"name": "hedera-smart-contract-starter",
"version": "1.0.0",
"description": "A smart contract starter with upgradeable contracts using ethers.js",
"scripts": {
"lint": "eslint .",
"compile": "hardhat compile",
"test": "hardhat test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@hashgraph/hedera-local": "^2.11.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-plugin-license-header": "^0.6.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.15.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"dotenv": "^16.3.1"
}
}