-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 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
{
"name": "safe-crosschain",
"license": "MIT",
"author": "crosschain-alliance",
"scripts": {
"compile": "hardhat compile",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"postinstall": "husky install && patch-package",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"test": "hardhat test"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@ethereumjs/rlp": "^5.0.1",
"@ethereumjs/trie": "^6.0.1",
"@ethereumjs/util": "^9.0.1",
"@safe-global/api-kit": "^1.3.1",
"@safe-global/protocol-kit": "1.3.0",
"@safe-global/safe-core-sdk-types": "^2.3.0",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"hardhat": "^2.19.2",
"hardhat-change-network": "^0.0.7",
"safe-contracts": "https://github.com/safe-global/safe-contracts.git",
"solidity-rlp": "^2.0.8"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"patch-package": "^8.0.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2"
}
}