forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.31 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
64
{
"name": "franklin-contracts",
"version": "0.1.0",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-solpp": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/argparse": "^1.0.36",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"argparse": "^1.0.10",
"axios": "^0.21.2",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-abi": "^0.6.8",
"ethers": "^5.4.4",
"ethjs": "^0.4.0",
"fs": "^0.0.1-security",
"handlebars": "^4.7.7",
"hardhat": "^2.0.8",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-typechain": "^0.3.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.2.0",
"openzeppelin-solidity": "^2.3.0",
"path": "^0.12.7",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"querystring": "^0.2.0",
"solc": "0.7.4",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^4.0.0",
"typescript": "^4.0.5",
"zksync": "link:../sdk/zksync.js"
},
"scripts": {
"build": "hardhat compile",
"test": "CONTRACT_TESTS=1 zk f yarn run hardhat test",
"deploy-no-build": "ts-node scripts/deploy.ts",
"upgrade-testnet-no-build": "ts-node scripts/upgrade-testnet.ts",
"deploy-eip1271": "ts-node scripts/deploy-eip1271.ts",
"deploy-erc20": "ts-node scripts/deploy-erc20.ts",
"deploy-withdrawal-helpers-contracts": "ts-node scripts/deploy-withdrawal-helpers.ts",
"governance-add-erc20": "ts-node scripts/governance-add-erc20.ts",
"server-add-erc20": "ts-node scripts/server-add-erc20.ts",
"token-info": "ts-node scripts/token-info.ts",
"deploy-testkit": "ts-node scripts/deploy-testkit.ts",
"publish-sources": "hardhat run --network env scripts/publish.ts",
"deploy-testnet-erc20": "ts-node scripts/deploy-testnet-token.ts",
"submit-hash-regenesis": "ts-node scripts/submit-hash-regenesis.ts",
"submit-regenesis-upgrade": "ts-node scripts/submit-regenesis-upgrade.ts",
"read-variable": "ts-node scripts/read-variable.ts",
"verify-deployed-contract": "ts-node scripts/verify-deployed-contract.ts"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.2"
}
}