-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
90 lines (90 loc) · 3.18 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "debridge-contracts",
"version": "4.2.1",
"description": "",
"scripts": {
"format:check": "prettier -c 'contracts/**/*.sol' 'test/*.js'",
"format:fix": "prettier --write 'contracts/**/*.sol' 'test/*.js'",
"lint:check": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint --fix 'contracts/**/*.sol'",
"clean": "hardhat clean",
"compile": "hardhat compile",
"verify": "hardhat verify",
"start-ganache": "ganache-cli --chainId 1 --seed alice",
"test": "hardhat test",
"test:ci": "hardhat compile && hardhat test",
"contract-size": "hardhat size-contracts",
"coverage": "hardhat coverage",
"docs": "ts-node scripts/docsGeneration/generate.ts --type all",
"docs:assert-in-sync": "ts-node scripts/docsGeneration/checkDocsAreInSync.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debridge-finance/debridge-contracts-v1.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/debridge-finance/debridge-contracts-v1/issues"
},
"homepage": "https://github.com/debridge-finance/debridge-contracts-v1#readme",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/test-helpers": "^0.5.13",
"@types/delete-empty": "^3.0.2",
"@types/dotenv-flow": "^3.2.0",
"@types/globby": "^9.1.0",
"@types/lodash": "^4.14.177",
"@types/rimraf": "^3.0.2",
"commander": "^8.3.0",
"delete-empty": "^3.0.0",
"dotenv-flow": "^3.2.0",
"ethers-multisend": "^2.1.1",
"ganache-cli": "^6.12.2",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"rimraf": "^3.0.2",
"solidity-docgen": "https://github.com/Vsevo1od/solidity-docgen#56fcb9fae85305235d0b3af7d086cb4f7b471d3b",
"truffle": "^5.4.8"
},
"dependenciesComments": {
"solidity-docgen": "TODO use npm version after https://github.com/OpenZeppelin/solidity-docgen/issues/339 and https://github.com/OpenZeppelin/solidity-docgen/issues/303 are fixed"
},
"devDependencies": {
"@ethersproject/constants": "^5.4.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.11",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@resolver-engine/core": "0.3.3",
"@typechain/ethers-v5": "^8.0.3",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.9",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^6.0.3",
"typescript": "^4.5.2",
"web3": "^1.5.2"
},
"resolutions": {
"@solidity-parser/parser": "^0.13.2"
}
}