-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 930 Bytes
/
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
{
"name": "token-xyz-contracts",
"version": "1.0.0",
"description": "",
"scripts": {
"docgen": "solidity-docgen --solc-module solc -t ./docs/templates/ && npm run format-docs",
"format-docs": "prettier --write ./docs --loglevel silent",
"lint": "solhint --max-warnings 0 'contracts/**/*.sol'",
"test": "node run-tests.js"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.16",
"custom-error-test-helper": "^1.0.6",
"eth-gas-reporter": "^0.2.25",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solc": "^0.8.17",
"solhint": "^3.3.7",
"solidity-docgen": "^0.5.17",
"truffle-plugin-verify": "^0.5.28"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@truffle/hdwallet-provider": "^2.0.15",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"ts-import": "^4.0.0-beta.6"
}
}