-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "@bzxnetwork/contractsV2",
"version": "1.0.0",
"description": "Version 2 of the smart contracts for the bZx protocol and external integrations",
"keywords": [],
"author": "bZeroX LLC 2020",
"license": "Apache-2.0",
"homepage": "https://github.com/bZxNetwork/contractsV2#readme",
"repository": {
"type": "git",
"url": "https://github.com/bZxNetwork/contractsV2.git"
},
"bugs": {
"url": "https://github.com/bZxNetwork/contractsV2/issues"
},
"devDependencies": {
"@types/node": "^16.11.17",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"openzeppelin-2.5.0": "npm:@openzeppelin/contracts@^2.5.0",
"openzeppelin-3.4.0": "npm:@openzeppelin/contracts@^3.4.0",
"openzeppelin-4.7.0": "npm:@openzeppelin/contracts@^4.7.0",
"prb-math": "^2.4.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.4"
},
"scripts": {
"analyize-contracts": "slither .",
"lint-contracts": "solhint contracts/**/*.sol",
"test": "brownie test",
"generate-merkle-root:output": "ts-node scripts/merkle-distributor/generate-merkle-root.ts --input scripts/merkle-distributor/output.json"
},
"husky": {
"hooks": {
"pre-commit-disabled": "yarn analyize-contracts && yarn lint-contracts && yarn test"
}
},
"dependencies": {
"@uniswap/v3-periphery": "^1.3.0",
"celer": "github:celer-network/sgn-v2-contracts",
"commander": "^6.1.0",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.5.2",
"ganache": "^7.4.1",
"ganache-cli": "^6.12.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}