-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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": "Furucombo",
"version": "2.0.0",
"description": "Furucombo contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "scripts/build.sh",
"check": "scripts/check.sh",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"analysis": "scripts/analysis.sh",
"lint:solhint": "solhint \"contracts/**/*.sol\"",
"lint:prettier": "scripts/prettier.sh",
"deploy": "scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git@garage.dinngo.co:hackathon-black/legocontract.git"
},
"author": "Ben Huang",
"license": "MIT",
"devDependencies": {
"@balancer-labs/sor": "^0.4.0-5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/hdwallet-provider": "^1.0.35",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.4.7",
"ganache-cli": "6.11.0",
"hardhat": "2.10.1",
"hardhat-deploy": "^0.9.0",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"husky": "^4.2.5",
"node-fetch": "^2.6.0",
"pify": "^5.0.0",
"prettier": "1.19.1",
"prettier-plugin-solidity": "1.0.0-beta.1",
"query-string": "^6.13.1",
"solc": "0.6.12",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.21",
"truffle": "5.1.60",
"web3": "^1.5.2",
"web3-provider-engine": "^15.0.12"
},
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"dotenv": "^16.0.1",
"pify": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:prettier && npm run lint:solhint"
}
}
}