-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.73 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.73 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
41
42
43
{
"name": "tether-l2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean-install": "rm -rf node_modules l1/node_modules l2/node_modules package-lock.json l1/package-lock.json l2/package-lock.json l1/typechain l2/typechain && npm i --force && npm link zksync-ethers && cd l1 && npm i --force && cd ../l2 && npm i --force && cd .. && npm run compile",
"all": "npm run compile && npm run deploy && npm run test",
"compile": "sh ./compile.sh",
"deploy": "sh ./deploy.sh",
"test": "cd l1 && npm run test && cd ../l2 && npm run test",
"test:e2e": "cd l1 && npm run test:e2e",
"test:deployment-acceptance": "cd l1 && npm run test:deployment-acceptance",
"test:unit": "cd l1 && npm run test:unit && cd ../l2 && npm run test:unit"
},
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.47",
"chai": "^4.3.6",
"dotenv": "^16.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.9.9",
"ts-node": "^10.7.0",
"typechain": "^5.2.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@matterlabs/zksync-contracts": "github:matter-labs/era-contracts#32ca4e665da89f5b4f2f705eee40d91024ad5b48",
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.0",
"era-contracts": "github:matter-labs/era-contracts#32ca4e665da89f5b4f2f705eee40d91024ad5b48",
"zksync-ethers": "5.8.0"
}
}