-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.48 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
{
"name": "@bancor/dad-bridge-wrapper",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bancorprotocol/dad-bridge-wrapper.git"
},
"homepage": "https://github.com/bancorprotocol/dad-bridge-wrapper#readme",
"bugs": {
"url": "https://github.com/bancorprotocol/dad-bridge-wrapper/issues"
},
"author": "Barak Manos",
"license": "MIT",
"files": [
"/contracts/**/*.sol",
"/artifacts/contracts/**/*.json",
"/typechain/**/*.ts"
],
"scripts": {
"hh": "hardhat",
"build": "hardhat compile",
"rebuild": "yarn clean && yarn build",
"test": "NODE_OPTIONS=${CI:+'--max-old-space-size=8192'} hardhat test",
"testb": "BAIL=1 yarn test",
"size": "yarn rebuild && hardhat size-contracts",
"verify": "hardhat verify",
"coverage": "yarn build && NODE_OPTIONS=${CI:+'--max-old-space-size=8192'} hardhat coverage",
"flatten": "hardhat flatten",
"lint": "solhint --max-warnings 0 contracts/**/*.sol",
"format": "prettier --check --write contracts/**/*.sol test/**/*.ts --config .prettierrc",
"snyk-protect": "snyk protect",
"prepare": "yarn build && yarn snyk-protect",
"clean": "rm -rf artifacts cache data coverage typechain"
},
"dependencies": {
"hardhat": "2.6.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.3.2",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"module-alias": "^2.2.2",
"prettier": "^2.4.1",
"prettier-package-json": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"snyk": "^1.731.0",
"solc": "0.8.9",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"snyk": true
}