-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 3.08 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
65
66
67
68
69
70
{
"name": "zkp2p-v2-contracts",
"version": "1.0.0",
"description": "V2 contracts for the ZK Peer to Peer fiat on/off-ramp",
"main": "index.js",
"author": "0xsachink <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile && yarn build:ts:latest",
"build:ts:latest": "yarn typechain && yarn transpile",
"chain": "npx hardhat node --no-deploy",
"clean": "rm -f coverage.json; rm -rf .coverage_cache; rm -rf .coverage_contracts; rm -rf cache; rm -rf coverage; rm -rf typechain; rm -rf artifacts; rm -rf dist",
"compile": "hardhat compile",
"coverage": "yarn clean && yarn build && npx hardhat coverage --testfiles 'test/{libs,periphery,verifiers,escrow}/*.ts'",
"deploy:localhost": "npx hardhat deploy --network localhost",
"deploy:goerli": "npx hardhat deploy --network goerli",
"deploy:sepolia": "npx hardhat deploy --network sepolia",
"deploy:base": "npx hardhat deploy --network base && npx hardhat export --network base --export ./deployments/outputs/baseContracts.ts",
"deploy:base_staging": "npx hardhat deploy --network base_staging && npx hardhat export --network base_staging --export ./deployments/outputs/baseStagingContracts.ts",
"etherscan:goerli": "yarn hardhat --network goerli etherscan-verify",
"etherscan:sepolia": "yarn hardhat --network sepolia etherscan-verify",
"etherscan:base": "yarn hardhat --network base etherscan-verify",
"etherscan:base_staging": "yarn hardhat --network base_staging etherscan-verify",
"test": "npx hardhat test test/libs/*.ts test/verifiers/*.ts test/periphery/*.ts test/escrow/*.ts",
"test:integration": "npx hardhat test test/integration/*.ts",
"test:clean": "yarn build && yarn test",
"test:fast": "NO_COMPILE=true TS_NODE_TRANSPILE_ONLY=1 yarn test --no-compile",
"test:deploy": "npx hardhat test test/deploy/*.ts",
"typechain": "hardhat typechain",
"transpile": "tsc"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-deploy": "^0.11.34",
"hardhat-gas-reporter": "^1.0.8",
"jest": "^29.7.0",
"module-alias": "^2.2.3",
"solidity-coverage": "^0.8.4",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2",
"@reclaimprotocol/verifier-solidity-sdk": "1.0.2",
"@zk-email/contracts": "^3.2.0",
"@zkp2p/reclaim-witness-sdk": "^0.0.2-rc5",
"canonicalize": "^2.0.0",
"circomlibjs": "^0.1.7",
"dotenv": "^16.3.1",
"ethereum-waffle": "^4.0.10"
},
"_moduleAliases": {
"@utils": "utils",
"@typechain": "typechain"
},
"packageManager": "[email protected]"
}