-
Notifications
You must be signed in to change notification settings - Fork 863
/
package.json
88 lines (88 loc) · 2.47 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
{
"name": "@aave/lens-protocol",
"version": "2.0.0",
"description": "Composable and decentralized social graph",
"scripts": {
"build": "forge build --sizes",
"coverage": "forge coverage --report lcov && genhtml lcov.info -o report --branch-coverage",
"test": "forge test",
"test:gas": "forge test -vvv --gas-report",
"deploy:local": "hardhat full-deploy --network localhost",
"deploy:mumbai": "hardhat full-deploy --network mumbai"
},
"repository": {
"type": "git",
"url": "https://github.com/aave/lens-protocol"
},
"bugs": {
"url": "https://github.com/aave/lens-protocol/issues"
},
"homepage": "https://github.com/aave/lens-protocol#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.8",
"@typechain/ethers-v5": "8.0.5",
"@typechain/hardhat": "3.0.0",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "16.11.11",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"chai": "4.3.4",
"defender-relay-client": "1.12.1",
"dotenv": "10.0.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"ethereum-waffle": "3.4.0",
"ethers": "^5.7.1",
"hardhat": "^2.12.0",
"hardhat-contract-sizer": "2.1.1",
"hardhat-gas-reporter": "1.0.6",
"hardhat-log-remover": "2.0.2",
"hardhat-spdx-license-identifier": "2.0.3",
"hardhat-tracer": "^1.1.0-rc.6",
"husky": "7.0.4",
"prettier": "^2.5.0",
"prettier-plugin-solidity": "^1.1.2",
"solidity-coverage": "^0.8.2",
"ts-generator": "0.1.1",
"ts-node": "10.4.0",
"typechain": "6.0.5",
"typescript": "4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'contracts/**/*.sol' --pattern 'helpers/**/*.ts' --pattern 'test/**/*.ts' --pattern 'tasks/**/*.ts'"
}
},
"dependencies": {
"@openzeppelin/contracts": "4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"hardhat-preprocessor": "^0.1.5"
},
"author": "Lens",
"contributors": [
"Alan Donoso Naumczuk",
"Victor Naumik",
"Josh Stevens",
"Peter Michael (Zer0dot)",
"David Racero",
"Emilio Frangella",
"Lasse Herskind",
"Miguel Martinez",
"Steven Valeri"
],
"license": "MIT",
"keywords": [
"lens",
"protocol",
"aave",
"social",
"graph",
"solidity",
"evm",
"contracts",
"core"
]
}