-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
77 lines (77 loc) · 2.58 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
{
"name": "@safe-global/safe-core-protocol",
"version": "0.3.0-alpha.1",
"description": "Safe{Core} Protocol contracts",
"main": "dist/deployments.js",
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-core-protocol"
},
"author": "safe.global",
"license": "LGPL-3.0",
"files": [
"contracts",
"dist",
"scripts",
"test",
"artifacts",
"deployments.ts"
],
"homepage": "https://github.com/safe-global/safe-core-protocol",
"scripts": {
"build": "hardhat compile && npm run build:ts",
"test": "hardhat test",
"coverage": "hardhat coverage",
"fmt:sol": "prettier 'contracts/**/*.sol' -w",
"fmt:ts": "prettier 'test/**/*.ts' -w",
"fmt": "yarn fmt:ts && yarn fmt:sol",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint 'test/**/*.ts' --max-warnings 0 --fix",
"typechain": "TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"postbuild": "yarn typechain",
"deploy": "hardhat deploy --network",
"prepack": "yarn build",
"deploy-all": "hardhat deploy-contracts --network",
"prepublish": "yarn rimraf build && yarn build && yarn build:ts",
"build:ts": "yarn rimraf dist && tsc -p tsconfig.prod.json"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^4.9.1",
"@safe-global/mock-contract": "^4.1.0",
"@safe-global/safe-singleton-factory": "^1.0.14",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.4.0",
"hardhat": "^2.15.0",
"hardhat-deploy": "^0.11.34",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.2.0",
"typescript": "~5.0.0",
"yargs": "^17.7.2"
}
}