-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.77 KB
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
{
"name": "props-protocol",
"version": "0.0.2",
"description": "Props Protocol v2",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "npm run build && hardhat coverage --solcoverjs ./.solcover.js",
"gas": "REPORT_GAS=1 hardhat test",
"solhint": "solhint -f table contracts/*.sol contract/**/*.sol",
"prettier:solidity": "prettier --write contracts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/propsproject/props-protocol.git"
},
"author": "Props Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/propsproject/props-protocol/issues"
},
"homepage": "https://github.com/propsproject/props-protocol#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@tomfrench/matic-proofs": "^0.3.1",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.1.2",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.0.24",
"hardhat": "^2.0.6",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^3.0.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}