-
Notifications
You must be signed in to change notification settings - Fork 390
/
package.json
93 lines (93 loc) · 3.25 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
91
92
93
{
"name": "@bancor/contracts-solidity",
"version": "0.7.13",
"description": "The solidity version of the Bancor smart contracts is composed of many different components that work together to create the Bancor Network deployment.",
"repository": {
"type": "git",
"url": "git+https://github.com/bancorprotocol/contracts-solidity.git"
},
"homepage": "https://github.com/bancorprotocol/contracts-solidity#readme",
"bugs": {
"url": "https://github.com/bancorprotocol/contracts-solidity/issues"
},
"author": "Yudi Levi",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/typechain/index.js",
"types": "dist/typechain/index.d.ts",
"files": [
"/contracts/**/*.sol",
"!/contracts/helpers",
"/artifacts",
"/typechain",
"/dist",
"/snapshot"
],
"scripts": {
"build": "hardhat compile",
"rebuild": "yarn clean && yarn build",
"test": "NODE_OPTIONS='--max-old-space-size=8192' hardhat test",
"testb": "BAIL=1 yarn test",
"size": "hardhat size-contracts",
"verify": "hardhat verify",
"coverage": "NODE_OPTIONS='--max-old-space-size=8192' hardhat coverage",
"flatten": "hardhat flatten",
"lint": "yarn lint:js && yarn lint:sol",
"lint:js": "eslint .",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"format": "prettier --check --write contracts/**/*.sol test/**/*.js utils/**/*.js --config .prettierrc",
"snyk-protect": "snyk-protect",
"prepare": "yarn clean && yarn build && yarn snyk-protect && tsc && copyfiles -u 1 \"typechain/**/*.d.ts\" dist/typechain",
"clean": "rm -rf artifacts cache coverage data typechain"
},
"dependencies": {
"hardhat": "2.14.0"
},
"devDependencies": {
"@bancor/token-governance": "^0.1.8",
"@ethersproject/hardware-wallets": "^5.6.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-4.6.0": "npm:@openzeppelin/contracts@4.6.0",
"@snyk/protect": "^1.913.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"chai-arrays": "^2.2.0",
"copyfiles": "^2.4.1",
"decimal.js": "10.3.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"hardhat-contract-sizer": "^2.5.1",
"humanize-duration": "^3.27.1",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.31",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"prettier-package-json": "^2.6.3",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "0.6.12",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3",
"web3": "1.7.3",
"yargs": "^17.4.1"
},
"snyk": true
}