-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.06 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
44
45
46
47
48
49
50
{
"name": "zksync-create2",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Charged-Particles/cpu-v2.git",
"author": "Firma Lux, Inc. <charged.fi>",
"license": "MIT",
"scripts": {
"reinstall": "yarn clean && rm -rf node_modules && rm -f yarn.lock && yarn",
"clean": "yarn clean-build && yarn clean-test && hardhat clean",
"clean-test": "rm -rf test-results.xml coverage coverage.json test-results.xml",
"clean-build": "rm -rf abis build cache-zk typechain-types",
"compile": "hardhat compile --show-stack-traces --max-memory 8192",
"test": "export IS_TEST=true && yarn clean-test && hardhat test --show-stack-traces --network hardhat",
"watch-test": "hardhat watch test",
"coverage": "yarn clean-test && hardhat --show-stack-traces coverage --temp coverage_build && yarn clean-test",
"gas": "REPORT_GAS=true yarn test",
"deploy": "hardhat deploy-zksync --script DeployAll.ts --network",
"deploy-test": "hardhat deploy-zksync --script ZkSepoliaTest.ts --network"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-chai-matchers": "^1.2.1",
"@matterlabs/hardhat-zksync-deploy": "^1.1.2",
"@matterlabs/hardhat-zksync-ethers": "^1.0.0",
"@matterlabs/hardhat-zksync-node": "^1.0.1",
"@matterlabs/hardhat-zksync-solc": "^1.0.6",
"@matterlabs/hardhat-zksync-verify": "^1.2.2",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "4.6.0",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.16",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^6.10.0",
"hardhat": "^2.12.4",
"hardhat-abi-exporter": "^2.10.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^4.9.5",
"zksync-ethers": "^6.2.0"
}
}