-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.12 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.12 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
{
"name": "@nodary/examples",
"version": "1.0.0",
"license": "MIT",
"description": "An example project for reading Nodary data feeds",
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat deploy --network $NETWORK",
"deploy-data-feed-proxy": "hardhat run scripts/deploy-data-feed-proxy.js --network $NETWORK",
"deploy-data-feed-proxy-with-oev": "hardhat run scripts/deploy-data-feed-proxy-with-oev.js --network $NETWORK",
"get-data-feed-id": "hardhat run scripts/get-data-feed-id.js",
"get-sponsor-wallet-addresses": "hardhat run scripts/get-sponsor-wallet-addresses.js",
"lint": "yarn run prettier:check && yarn run lint:eslint && yarn run lint:solhint",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint:eslint": "eslint . --ext .js,.ts",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,sol}\"",
"prettier": "prettier --write \"./**/*.{js,ts,md,json,sol}\"",
"read-data-feed": "hardhat run scripts/read-data-feed.js --network $NETWORK",
"read-direct": "hardhat run scripts/read-direct.js --network $NETWORK",
"test": "hardhat test",
"update-proxy": "hardhat run scripts/update-proxy.js --network $NETWORK"
},
"devDependencies": {
"@api3/chains": "^6.1.0",
"@api3/contracts": "^3.4.0",
"@nodary/utilities": "^3.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.16",
"@types/mocha": ">=9.1.1",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"eslint": "^9.2.0",
"hardhat": "^2.22.3",
"hardhat-deploy": "^0.12.4",
"hardhat-gas-reporter": "^2.1.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solidity-coverage": "^0.8.12",
"ts-node": ">=8.10.2",
"typechain": "^8.3.2",
"typescript": ">=4.9.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2"
}
}