This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.93 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
{
"name": "@impact-market/smart-contracts",
"version": "0.0.1",
"description": "Decentralized impact-driven 2-sided marketplace to provide financial services to charities and vulnerable beneficiaries.",
"scripts": {
"account": "node utils/createAccount.js",
"pretest": "hardhat typechain",
"test": "hardhat test",
"pretest:ci": "hardhat typechain",
"test:ci": "TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"precoverage:ci": "hardhat typechain",
"coverage:ci": "hardhat coverage",
"postcoverage:ci": "cat coverage/lcov.info | coveralls",
"generate-ts": "hardhat compile && hardhat typechain",
"security": "slither . --filter-paths \"@openzeppelin|test\" --exclude-informational --exclude-low",
"localnet": "ganache-cli --gasLimit 0xfffffffffff --port 8545",
"prettier": "prettier --write \"./test/**/**/*.ts\"",
"lint": "npx hardhat check && eslint --fix \"./test/**/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/impactMarket/smart-contracts.git"
},
"author": "impact-market",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/impactMarket/smart-contracts/issues"
},
"homepage": "https://github.com/impactMarket/smart-contracts#readme",
"engines": {
"node": "14.15.1"
},
"dependencies": {
"@celo/contractkit": "1.2.0",
"@openzeppelin/contracts": "4.1.0"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@codechecks/client": "0.1.10",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/test-helpers": "0.5.11",
"@typechain/ethers-v5": "7.0.0",
"@typechain/hardhat": "2.0.1",
"@types/bignumber.js": "5.0.0",
"@types/bn.js": "5.1.0",
"@types/chai": "4.2.18",
"@types/mocha": "8.2.2",
"@types/node": "15.6.0",
"@types/web3": "1.2.2",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"bignumber.js": "9.0.1",
"chai": "4.3.4",
"coveralls": "3.1.0",
"dotenv": "9.0.2",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-universe": "7.0.1",
"eth-gas-reporter": "0.2.22",
"ethereum-waffle": "3.3.0",
"ethers": "5.2.0",
"ganache-cli": "6.12.2",
"hardhat": "2.3.0",
"hardhat-deploy": "^0.7.9",
"hardhat-tracer": "1.0.0-alpha.6",
"prettier": "2.3.0",
"solhint": "3.3.4",
"solidity-coverage": "0.7.16",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "5.0.0",
"typescript": "4.2.4",
"web3": "1.3.6"
}
}