-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.33 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.33 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
{
"name": "@nodary/examples",
"version": "1.0.0",
"license": "MIT",
"packageManager": "pnpm@10.26.2",
"engines": {
"pnpm": "^10.26.2"
},
"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:deterministic": "DETERMINISTIC=true hardhat run scripts/deploy-data-feed-proxy.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": "pnpm run prettier:check && pnpm run lint:eslint && pnpm run lint:solhint",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint:eslint": "eslint . --ext .js,.ts",
"list-supported-chains": "node scripts/list-supported-chains.js",
"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/contracts": "36.0.0",
"@api3/contracts-v9": "npm:@api3/contracts@9.1.0",
"@nodary/utilities": "^7.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.20",
"@types/mocha": ">=10.0.10",
"chai": "^4.5.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"ethers": "^5.8.0",
"hardhat": "^2.28.6",
"hardhat-deploy": "^0.14.1",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.4.3",
"solhint": "^3.6.2",
"solidity-coverage": "^0.8.17",
"ts-node": ">=10.9.2",
"typechain": "^8.3.2",
"typescript": ">=5.9.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6"
}
}