-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.5 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
{
"name": "metronome-synth",
"version": "0.0.1",
"description": "Metronome Synth",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"prettier": "npx prettier --check **/*.ts **/*.sol",
"prettier:fix": "npx prettier --write **/*.ts **/*.sol",
"solhint": "solhint './contracts/**/*.sol'",
"solhint:fix": "solhint --fix 'contracts/**/*.sol'",
"eslint": "eslint --cache ./test/**/*.ts",
"eslint:fix": "eslint --cache --fix ./test --ext .ts",
"lint": "npm run prettier && npm run solhint && npm run eslint",
"clean": "hardhat clean",
"compile": "hardhat compile",
"precoverage": "hardhat typechain",
"coverage": "hardhat coverage",
"postcoverage": "istanbul check-coverage --statements 90 --branches 75 --functions 88 --lines 92",
"deploy": "hardhat deploy",
"pretest": "hardhat typechain",
"test": "hardhat test --parallel",
"verify": "hardhat etherscan-verify",
"size-contract": "hardhat size-contracts"
},
"devDependencies": {
"@defi-wonderland/smock": "2.3.4",
"@nomicfoundation/hardhat-toolbox": "2.0.0",
"@safe-global/safe-core-sdk": "3.3.2",
"@safe-global/safe-ethers-adapters": "0.1.0-alpha.16",
"@safe-global/safe-ethers-lib": "1.9.2",
"@safe-global/safe-service-client": "1.5.2",
"@types/chai": "4.3.3",
"@types/lodash": "4.14.191",
"@types/mocha": "9.1.1",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"compare-versions": "4.1.4",
"dotenv": "16.0.3",
"eslint": "8.37.0",
"eslint-config-bloq": "3.4.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "40.1.1",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-require-path-exists": "1.1.9",
"ethers-multisend": "2.4.0",
"hardhat": "2.12.5",
"hardhat-contract-sizer": "2.6.1",
"hardhat-deploy": "0.11.22",
"hardhat-log-remover": "2.0.2",
"hardhat-spdx-license-identifier": "2.1.0",
"lodash": "4.17.21",
"merkletreejs": "0.3.10",
"prettier-plugin-solidity": "1.1.1",
"sleep-promise": "9.1.0",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
}
}