forked from safe-global/safe-smart-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@safe-global/safe-contracts",
"version": "1.4.1-build.0",
"description": "Ethereum multisig contract",
"homepage": "https://github.com/safe-global/safe-contracts/",
"license": "LGPL-3.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"contracts",
"dist",
"src",
"test",
"build"
],
"scripts": {
"build": "hardhat compile",
"build:ts": "rimraf dist && tsc -p tsconfig.prod.json",
"build:ts:dev": "rimraf dist && tsc -p tsconfig.json",
"test": "hardhat test",
"test:parallel": "hardhat test --parallel",
"coverage": "hardhat coverage",
"benchmark": "npm run test benchmark/*.ts",
"deploy-custom": "rm -rf deployments/custom && npm run deploy-all custom",
"deploy-all": "hardhat deploy-contracts --network",
"deploy": "hardhat deploy --network",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:prettier": "prettier 'contracts/**/*.sol' --list-different",
"lint:ts": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"fmt:sol": "prettier 'contracts/**/*.sol' -w",
"fmt:ts": "prettier 'src/**/*.ts' 'test/**/*.ts' -w",
"prepack": "npm run build",
"prepare": "husky install",
"prepublish": "rimraf build && npm run build && npm run build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-contracts.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/safe-global/safe-contracts/issues"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^3.4.0",
"@safe-global/mock-contract": "^4.0.0",
"@safe-global/safe-singleton-factory": "^1.0.15",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.3",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"debug": "^4.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"hardhat": "^2.17.1",
"hardhat-deploy": "^0.11.37",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "1.1.3",
"solc": "0.7.6",
"solhint": "3.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"yargs": "^17.7.2"
}
}