forked from AztecProtocol/aztec-connect-bridges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"scripts": {
"setup": "curl -L https://foundry.paradigm.xyz | bash && foundryup && git submodule update --init",
"compile:contracts": "forge build",
"compile:typechain": "forge build && hardhat compile ",
"clean": "rm -rf ./cache ./dest ./out ./artifacts ./typechain-types",
"test": "yarn test:contracts && yarn test:clients",
"test:client": "jest test",
"test:contracts": "forge test"
},
"dependencies": {
"@ethersproject/constants": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.2",
"@typechain/ethers-v4": "^7.0.0",
"crypto": "^1.0.1",
"ethers": "^5.5.4",
"hardhat": "^2.8.3",
"jest": "^27.5.0",
"typescript": "^4.5.5"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"rootDir": "./src"
},
"name": "aztec-connect-bridges",
"version": "1.0.0",
"description": "This repo contains the solidity files and typescript helper class for all of the Aztec Connect Bridge Contracts",
"repository": "git@github.com:AztecProtocol/aztec-connect-bridges.git",
"license": "MIT",
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/jest": "^27.4.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typechain": "^7.0.0"
}
}