-
Notifications
You must be signed in to change notification settings - Fork 572
/
package.json
91 lines (91 loc) · 3.22 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
{
"name": "@aave/core-v3",
"version": "1.19.4",
"description": "Aave Protocol V3 core smart contracts",
"files": [
"contracts",
"artifacts",
"types",
"dist"
],
"main": "dist/helpers/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"size": "npm run compile && npm run hardhat size-contracts",
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"compile": "SKIP_LOAD=true hardhat compile",
"compile:clean": "npm run ci:clean && npm run compile",
"console:fork": "FORK=main hardhat console",
"prettier:check": "prettier -c .",
"prettier:write": "prettier -w .",
"coverage": ". ./setup-test-env.sh && COVERAGE=true npx hardhat coverage --temp temp-artifacts --testfiles test-suites/emptyrun.coverage.ts && rm -rf coverage.json coverage/ && COVERAGE=true npx hardhat coverage --temp temp-artifacts --testfiles 'test-suites/*.spec.ts'",
"test": ". ./setup-test-env.sh && TS_NODE_TRANSPILE_ONLY=1 hardhat test test-suites/*.spec.ts",
"test-scenarios": ". ./setup-test-env.sh && npx hardhat test test-suites/__setup.spec.ts test-suites/scenario.spec.ts",
"test-l2pool": ". ./setup-test-env.sh && npx hardhat test test-suites/__setup.spec.ts test-suites/pool-l2.spec.ts",
"test-subgraph:scenarios": ". ./setup-test-env.sh && hardhat --network hardhatevm_docker test test-suites/__setup.spec.ts test-suites/subgraph-scenarios.spec.ts",
"ci:test": ". ./setup-test-env.sh && npm run test",
"ci:clean": "rm -rf ./artifacts ./cache ./types ./temp-artifacts",
"prepare": "husky install",
"build": "tsc --project lib.tsconfig.json",
"prepublish": "npm run compile && npm run build"
},
"devDependencies": {
"@aave/deploy-v3": "1.56.1",
"@aave/periphery-v3": "2.5.1",
"@ethersproject/bignumber": "^5.6.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@tenderly/hardhat-tenderly": "1.1.0-beta.5",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/node": "14.0.5",
"bluebird": "^3.7.2",
"dotenv": "8.2.0",
"eth-sig-util": "2.5.3",
"ethereumjs-util": "7.0.2",
"hardhat": "2.12.2",
"hardhat-contract-sizer": "2.0.3",
"hardhat-dependency-compiler": "1.1.2",
"hardhat-deploy": "0.11.12",
"husky": "8.0.3",
"jsondiffpatch": "0.4.1",
"lint-staged": "13.1.0",
"prettier": "2.8.4",
"prettier-plugin-solidity": "1.1.3",
"ts-node": "8.10.2",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "^4.5.0"
},
"author": "Aave",
"contributors": [
"Emilio Frangella <emilio@aave.com>",
"Miguel Martinez <miguel@aave.com>",
"Steven Valeri <steven@aave.com>",
"David Racero <david.k@aave.com>",
"Lasse Herskind <lasse@aave.com>",
"Mark Hinschberger <mark@aave.com>",
"Peter Michael <peter.dev@aave.com>",
"Pol Sendra <pol@aave.com>"
],
"license": "BUSL-1.1",
"keywords": [
"aave",
"protocol",
"protocol-v3",
"core-v3",
"ethereum",
"solidity"
],
"repository": {
"type": "git",
"url": "git://github.com/aave/aave-v3-core"
},
"lint-staged": {
"*.{ts,js,md,sol}": "prettier --write"
}
}