forked from lens-protocol/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.14 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
89
90
91
92
93
94
95
96
97
98
{
"name": "@aave/lens-protocol",
"version": "1.0.2",
"description": "Composable and decentralized social graph",
"main": "index.js",
"scripts": {
"test": "npm run compile && TRACK_GAS=true hardhat test",
"quick-test": "hardhat test",
"spdx": "hardhat prepend-spdx-license",
"size": "npm run compile && hardhat size-contracts",
"full-deploy-local": "hardhat full-deploy --network localhost",
"full-deploy-mumbai": "hardhat full-deploy --network mumbai",
"coverage": "npm run compile && hardhat coverage --temp temp-artifacts --testfiles test/emptyrun.coverage.ts && hardhat coverage --temp temp-artifacts --testfiles '!test/emptyrun.coverage.ts'",
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"hardhat:kovan": "hardhat --network kovan",
"hardhat:tenderly-main": "hardhat --network tenderlyMain",
"hardhat:ropsten": "hardhat --network ropsten",
"hardhat:main": "hardhat --network main",
"hardhat:docker": "hardhat --network hardhatevm_docker",
"hardhat:mumbai": "hardhat --network mumbai",
"hardhat:matic": "hardhat --network matic",
"compile": "SKIP_LOAD=true hardhat clean && SKIP_LOAD=true hardhat compile",
"console:fork": "MAINNET_FORK=true hardhat console",
"format": "prettier --write .",
"lint": "eslint ."
},
"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.5.1",
"hardhat": "2.7.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",
"husky": "7.0.4",
"prettier": "2.5.0",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solidity-coverage": "0.7.17",
"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.5.0"
},
"author": "Lens",
"contributors": [
"Peter Michael (Zer0dot)",
"Miguel Martinez",
"Lasse Herskind",
"Steven Valeri",
"Alan Donoso Naumczuk",
"Emilio Frangella",
"David Racero"
],
"license": "MIT",
"keywords": [
"lens",
"protocol",
"aave",
"social",
"graph",
"solidity",
"evm",
"contracts",
"core"
]
}