-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.29 KB
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": "zksync-hardhat-template",
"description": "A template for ZKsync smart contracts development with Hardhat",
"private": true,
"author": "Matter Labs",
"license": "MIT",
"repository": "https://github.com/matter-labs/zksync-hardhat-template.git",
"scripts": {
"deploy": "hardhat run ./scripts/deploy.ts",
"deploy-erc20": "hardhat run ./scripts/deploy-erc20.ts",
"deploy-nft": "hardhat run ./scripts/deploy-nft.ts",
"interact": "hardhat run ./scripts/interact.ts",
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test --network hardhat"
},
"devDependencies": {
"@matterlabs/hardhat-zksync": "^1.4.0",
"@matterlabs/hardhat-zksync-solc": "^1.2.6",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@openzeppelin/contracts": "^5.2.0",
"@types/chai": "^4.3.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.10.1",
"chai": "^4.3.7",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"hardhat": "^2.22.17",
"mocha": "^11.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"zksync-ethers": "^6.15.3"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^5.2.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4"
}
}