generated from pcaversaccio/hardhat-project-template-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.53 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": "zksync-vyper-sandbox",
"version": "1.0.0",
"description": "A sandbox environment for ZKsync Era Vyper compiler testing.",
"keywords": [
"compiler",
"testing",
"vyper",
"zksync-era"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pcaversaccio/zksync-vyper-sandbox.git"
},
"homepage": "https://github.com/pcaversaccio/zksync-vyper-sandbox#readme",
"bugs": {
"url": "https://github.com/pcaversaccio/zksync-vyper-sandbox/issues"
},
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
"license": "MIT",
"packageManager": "pnpm@10.3.0",
"scripts": {
"compile": "npx hardhat compile",
"vars:path": "npx hardhat vars path",
"deploy:zksynclocal": "npx hardhat deploy-zksync --network zkSyncLocal --script deploy-zksync.ts",
"deploy:zksynctestnet": "npx hardhat deploy-zksync --network zkSyncTestnet --script deploy-zksync.ts",
"deploy:zksyncmain": "npx hardhat deploy-zksync --network zkSyncMain --script deploy-zksync.ts",
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"solhint:check": "npx solhint \"contracts/solidity/**/*.sol\"",
"solhint:fix": "npx solhint \"contracts/solidity/**/*.sol\" --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && npx eslint .",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@matterlabs/hardhat-zksync-deploy": "^1.6.0",
"@matterlabs/hardhat-zksync-ethers": "1.2.1",
"@matterlabs/hardhat-zksync-solc": "^1.2.5",
"@matterlabs/hardhat-zksync-verify": "^1.7.1",
"@matterlabs/hardhat-zksync-verify-vyper": "0.0.1-alpha.6",
"@matterlabs/hardhat-zksync-vyper": "^1.1.1",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@nomiclabs/hardhat-vyper": "^3.0.8",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"ethers": "^6.13.5",
"hardhat": "^2.22.18",
"prettier": "^3.5.0",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"zksync-ethers": "^6.16.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"cpu-features",
"keccak",
"protobufjs",
"secp256k1",
"ssh2"
]
}
}