generated from DeFiFoFum/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.16 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
{
"name": "@ape.swap/price-getter",
"version": "0.0.5",
"description": "Solidity Smart Contract development template using modern Web3 frameworks/tools including Hardhat, Typechain and more.",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"postinstall": "hardhat",
"prebuild": "yarn audit && yarn compile && yarn lint:sol && yarn clean ./dist",
"build": "tsc",
"precommit": "yarn lint:fix",
"precompile": "yarn clean ./artifacts",
"compile": "hardhat compile",
"gen:docs": "hardhat docgen",
"deploy": "hardhat run ./scripts/deploy/deployPriceGetterExtended.ts --network",
"verify": "hardhat verify-contract",
"test": "hardhat test",
"test:gas": "env REPORT_GAS=true yarn test",
"test:coverage": "hardhat coverage",
"test:ci": "yarn compile && yarn test",
"size": "hardhat size-contracts",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:fix": "yarn lint:sol:fix && yarn lint:ts:fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write 'contracts/**/*.sol'",
"lint:ts": "prettier --check './{scripts,tasks,src,hardhat,test}/**/*.ts'",
"lint:ts:fix": "prettier --write './{scripts,tasks,src,hardhat,test}/**/*.ts'",
"lint:ci": "yarn lint",
"list:networks": "hardhat verify --list-networks",
"clean": "node ./hardhat/utils/clean.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ape.swap/price-getter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ape.swap/price-getter/issues"
},
"homepage": "https://github.com/ape.swap/price-getter#readme",
"resolutions": {
"got": "^11.8.5",
"node-fetch": "^2.6.7",
"minimatch": "^3.0.5",
"flat": "^5.0.1"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomicfoundation/hardhat-verify": "^2.0.7",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"@types/node-fetch": "^2.6.2",
"chai": "^4.2.0",
"chalk": "4.1.1",
"dotenv": "^16.0.1",
"ethers": "^5.4.7",
"fs": "^0.0.1-security",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"node-fetch": "2.6.7",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@uniswap/v3-core": "1.0.2-solc-0.8-simulate",
"axios": "^1.3.5"
}
}