-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.74 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
{
"name": "smart-accounts",
"version": "0.1.12",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"author": "ququzone <xueping.yang@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf ./artifacts ./cache ./foundry-out ./types ./dist",
"compile": "hardhat compile",
"test": "hardhat test",
"snapshots": "UPDATE_SNAPSHOT=1 hardhat test",
"build": "yarn clean && yarn compile && tsc",
"lint:fix": "yarn lint:sol:fix && forge fmt test/ && prettier --write '{src,scripts,deploy,test}/**/*.ts'",
"lint": "yarn lint:sol && prettier --check 'test/**/*.ts'",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^11.1.1",
"@typechain/hardhat": "^7.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.2",
"hardhat": "^2.17.2",
"hardhat-deploy": "^0.11.37",
"import-toml": "^1.0.0",
"prettier": "^3.0.1",
"prettier-plugin-solidity": "^1.2.0",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@openzeppelin/contracts": "^4.9.3",
"dotenv": "^16.3.1",
"ec-pem": "^0.18.0",
"ethereumjs-util": "^7.1.5",
"userop": "^0.3.3"
}
}