-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "safe-superuser",
"version": "1.0.0",
"description": "Gnosis Safe module that enables trusted super-users to execute transactions without additional confirmations",
"main": "index.js",
"scripts": {
"clean": "rm -rf artifacts cache",
"test": "npx hardhat test",
"pretty": "npx prettier '**/*.{js,md,sol,yml}' --write"
},
"author": "Daniel McCartney <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dmccartney/safe-superuser",
"repository": {
"type": "git",
"url": "https:[email protected]:dmccartney/safe-superuser.git"
},
"bugs": {
"url": "https://github.com/dmccartney/safe-superuser/issues"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2"
},
"devDependencies": {
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@safe-global/safe-core-sdk": "^3.3.2",
"@safe-global/safe-ethers-lib": "^1.9.2",
"dotenv": "^16.0.3",
"hardhat": "^2.13.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3"
}
}