-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.46 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "aa-demos",
"version": "1.0.0",
"description": "Account Abstraction Demos",
"main": "index.js",
"repository": "https://github.com/txfusion/aa-demos.git",
"author": "TxFusion",
"license": "MIT",
"private": true,
"scripts": {
"deploy": "hardhat deploy-zksync --script deploy.ts",
"compile": "hardhat clean && hardhat compile",
"clean": "hardhat clean",
"deploy:auth-tx-testnet": "hardhat deploy-zksync --script deploy-authtx.ts --network zkSyncTestnet --show-stack-traces",
"deploy:auth-tx": "hardhat deploy-zksync --script deploy-authtx.ts",
"interact": "hardhat deploy-zksync --script interact.ts",
"batch": "hardhat deploy-zksync --script use-multicall-batch.ts",
"test-paymaster": "hardhat test ./test/batch-txs-and-paymaster/paymaster.integration.test.ts",
"test": "hardhat test --network hardhat",
"test:auth-tx": "cd test && hardhat test ./transaction-authorization.test.ts",
"slither": "RUN_SLITHER=true slither .",
"slither:auth-tx": "RUN_SLITHER=true slither ./contracts/transaction-authorization/TokenAuthorisable.sol",
"prepare": "husky install",
"lint": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore ./*.ts ./**/*.ts ./**/*.ts"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-chai-matchers": "^0.1.3",
"@matterlabs/hardhat-zksync-deploy": "^0.6.5",
"@matterlabs/hardhat-zksync-node": "^0.0.1-beta.6",
"@matterlabs/hardhat-zksync-solc": "^0.4.2",
"@matterlabs/hardhat-zksync-upgradable": "^0.1.3",
"@matterlabs/hardhat-zksync-verify": "^0.1.8",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.8.1",
"@types/chai": "^4.3.4",
"@types/eslint": "^8",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^4.9.5",
"zksync-web3": "^0.14.3"
}
}