-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "zksync-101",
"version": "1.0.0",
"description": "A project to learn how to build with zksync-cli",
"private": true,
"author": "Matter Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/matter-labs/zksync-contract-templates.git"
},
"keywords": [
"zksync",
"zksync-cli",
"hardhat"
],
"scripts": {
"deploy:hello-zksync": "hardhat deploy-zksync --script 1-hello-zksync/deploy.ts",
"deploy:crowdfunding-factory": "hardhat deploy-zksync --script 2-contract-factory/deploy.ts",
"test:crowdfunding-campaign": "hardhat test --network hardhat test/1-hello-zksync/CrowdfundingCampaign.test.ts",
"deploy:transparent-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/transparent/deploy.ts",
"upgrade:transparent-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/transparent/upgrade.ts",
"deploy:uups-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/uups/deploy.ts",
"upgrade:uups-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/uups/upgrade.ts",
"deploy:beacon-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/beacon/deploy.ts",
"upgrade:beacon-proxy": "hardhat deploy-zksync --script 3-proxy-contracts/beacon/upgrade.ts",
"deploy:approval-paymaster": "hardhat deploy-zksync --script 4-paymaster/approval/deploy.ts",
"interact:approval-paymaster": "hardhat deploy-zksync --script 4-paymaster/approval/interact.ts",
"deploy:gasless-paymaster": "hardhat deploy-zksync --script 4-paymaster/gasless/deploy.ts",
"interact:gasless-paymaster": "hardhat deploy-zksync --script 4-paymaster/gasless/interact.ts",
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test --network hardhat"
},
"bugs": {
"url": "https://github.com/matter-labs/zksync-contract-templates/issues"
},
"homepage": "https://github.com/matter-labs/zksync-contract-templates#readme",
"devDependencies": {
"@matterlabs/hardhat-zksync": "^1.0.0",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/ignition-core": "^0.15.5",
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"dotenv": "^16.4.5",
"hardhat": "^2.22.8",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^4.9.5",
"zksync-ethers": "^6.11.1"
}
}