forked from pendle-finance/pendle-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.28 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.28 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
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
{
"name": "@pendle/core",
"version": "1.8.3",
"description": "Core smart contracts of Pendle Protocol.",
"author": "Pendle Labs",
"license": "BUSL-1.1",
"homepage": "https://pendle.finance",
"files": [
"contracts/",
"build/artifacts/contracts/",
"deployments/",
"typechain-types/"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pendle-finance/pendle-core.git"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "3.4.1",
"@openzeppelin/test-helpers": "0.5.12",
"@pendle/constants": "https://github.com/pendle-finance/pendle-constants.git#d8380d64b5e8687cbbacd3f41dd57fe103bb58b7",
"@rari-capital/solmate": "^6.2.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@truffle/hdwallet-provider": "^1.3.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/lodash": "^4.14.178",
"@types/mocha": "^8.2.2",
"@types/node": "^17.0.0",
"bignumber.js": "^9.0.2",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.0",
"ethers": "5.4.6",
"hardhat": "^2.8.4",
"hardhat-gas-reporter": "^1.0.7",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.27",
"openzeppelin-solidity": "^4.3.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"shelljs": "^0.8.4",
"solc": "^0.8.11",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.19",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4",
"web3": "^1.6.1"
},
"scripts": {
"compile": "yarn hardhat compile && yarn size",
"coverage": "yarn hardhat coverage --testfiles",
"coverage:core": "yarn hardhat coverage --testfiles \"test/core/*.spec.*\"",
"coverage:all": "yarn hardhat coverage --testfiles \"test/**/*.spec.*\"",
"fork": "yarn hardhat node",
"lint": "yarn solhint 'contracts/**/*.sol' && yarn prettier -c './**/*.js'",
"size": "yarn ts-node scripts/contractBytecodeSize.js",
"test": "yarn hardhat test",
"test:core": "yarn test test/core/*.spec.*",
"test:all": "yarn test test/**/*.spec.*",
"format": "yarn prettier --write \"{onchain-tests,scripts,scripts-2,test,pendle-deployment-scripts}/**/*.{js,ts}\"",
"format-contracts": "yarn prettier --write \"contracts/**/*.sol\"",
"deploy:core": "yarn hardhat run scripts/deploy/deploy.ts",
"deploy:seed": "yarn hardhat run scripts/manage/seed_test_contracts.ts",
"verify": "yarn hardhat run scripts/manage/verify_tenderly.ts",
"dev": "yarn hardhat run scripts/manage/dev/development_self_fund.ts --network development && yarn hardhat run scripts/manage/dev/alice_participate.ts --network development",
"teleport": "yarn hardhat run scripts/manage/dev/teleport.ts --network development"
},
"packageManager": "yarn@3.1.1"
}