This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.97 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": "yellow-smart-contracts",
"scripts": {
"node:local": "npx hardhat node --no-deploy",
"YN:local": "npx hardhat node --tags YN-local --export local-YN-addresses.json",
"export-accounts": "npx hardhat run scripts/export-accounts.ts",
"bindings:local": "make bindings-local SOLC_BIN=solc ABIGEN_BIN=abigen",
"bindings:linux": "make bindings-lin",
"bindings:macos": "make bindings-mac",
"bindings:cache": "make bindings-cache",
"bindings:docker": "docker build -f abigen.Dockerfile -t abigen . && docker create --name abigen abigen && docker cp abigen:./bindings ./ && docker rm -f abigen",
"lint": "npx eslint \"./\" && prettier '**/*.{json,sol,md}' -c && solhint 'contracts/**/*.sol'",
"lint:fix": "eslint '**/*.{js,ts}' --fix && prettier '**/*.{json,sol,md}' --write && solhint 'contracts/**/*.sol' --fix",
"docs": "solidity-docgen --solc-module solc -t docs/api/templates -i contracts -H docs/api/templates/helpers.js -o ./docs/api && doctoc ./ --maxlevel 3",
"update": "ncu"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "3.1.2",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "1.21.0",
"@openzeppelin/test-helpers": "0.5.16",
"@tsconfig/node18-strictest-esm": "1.0.1",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.3",
"@types/mocha": "10.0.0",
"@types/node": "18.11.8",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"chai": "4.3.6",
"doctoc": "2.2.1",
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-no-constructor-bind": "2.0.4",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.16.0",
"eslint-plugin-unicorn": "44.0.2",
"eslint-plugin-unused-imports": "2.0.0",
"ethereum-cryptography": "1.1.2",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"hardhat": "2.12.1",
"hardhat-abi-exporter": "2.10.1",
"hardhat-deploy": "0.11.19",
"hardhat-gas-reporter": "1.0.9",
"npm-check-updates": "16.3.16",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.22",
"solc": "npm:solc@0.8.16",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.2",
"solidity-docgen": "0.5.17",
"tsx": "3.11.0",
"typechain": "8.1.0",
"typescript": "4.8.4"
},
"overrides": {
"@nomiclabs/hardhat-waffle": {
"@nomiclabs/hardhat-ethers": "$@nomiclabs/hardhat-ethers"
},
"@openzeppelin/hardhat-upgrades": {
"@nomiclabs/hardhat-ethers": "$@nomiclabs/hardhat-ethers"
}
}
}