forked from matter-labs/l2-intro-pre-ethdenver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 873 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
{
"name": "zksync-hardhat-template",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:matter-labs/zksync-hardhat-template.git",
"author": "Antonio <[email protected]>",
"license": "MIT",
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.1",
"@matterlabs/hardhat-zksync-solc": "^0.3.13",
"@openzeppelin/contracts": "^4.8.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"zksync-web3": "^0.13.0"
},
"scripts": {
"test": "NODE_ENV=test hardhat test --network hardhat",
"deploy": "yarn hardhat deploy-zksync --script deploy-greeter.ts",
"greet": "yarn hardhat deploy-zksync --script use-greeter.ts"
}
}