-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
57 lines (57 loc) · 2.1 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
{
"name": "@safe-global/safe-allowance-module",
"version": "0.1.1",
"description": "Allowance module for the gnosis safe",
"keywords": [
"Ethereum",
"Wallet",
"Safe",
"Safe module"
],
"scripts": {
"clean": "rimraf build typechain-types coverage",
"build": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy-verify --network",
"deploy-custom": "rm -rf deployments/custom && npm run deploy custom",
"prepare": "pnpm run clean && npm run build",
"lint": "pnpm run lint:sol && npm run lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
"lint:ts": "eslint 'tasks/**/*.ts' 'test/**/*.ts' --max-warnings 0",
"lint:ts:fix": "eslint 'tasks/**/*.ts' 'test/**/*.ts' --max-warnings 0 --fix",
"fmt": "pnpm run fmt:sol:write && npm run fmt:ts:write",
"fmt:check": "pnpm run fmt:sol:check && npm run fmt:ts:check",
"fmt:sol:check": "prettier 'contracts/**/*.sol' --check",
"fmt:ts:check": "prettier 'tasks/**/*.ts' 'test/**/*.ts' --check",
"fmt:sol:write": "prettier 'contracts/**/*.sol' --write",
"fmt:ts:write": "prettier 'tasks/**/*.ts' 'test/**/*.ts' --write"
},
"author": "safe-global",
"license": "LGPL-3.0-only",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@safe-global/safe-contracts": "1.4.1-2",
"@safe-global/safe-deployments": "^1.37.22",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.17",
"hardhat-deploy": "^0.12.4",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.7.2"
}
}