-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 2.44 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
{
"name": "@api3/data-feed-reader-example",
"version": "2.0.0",
"license": "MIT",
"description": "An example project for reading API3 data feeds",
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat deploy --network $NETWORK",
"deploy:communal-api3readerproxyv1": "hardhat run scripts/deploy-communal-api3readerproxyv1.js --network $NETWORK",
"deploy:dapp-specific-api3readerproxyv1": "hardhat run scripts/deploy-dapp-specific-api3readerproxyv1.js --network $NETWORK",
"deploy:dapp-specific-api3readerproxyv1:unsafe": "hardhat run scripts/deploy-dapp-specific-api3readerproxyv1-unsafe.js --network $NETWORK",
"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}\"",
"print:communal-api3readerproxyv1-address": "hardhat run scripts/print-communal-api3readerproxyv1-address.js --network $NETWORK",
"print:dapp-specific-api3readerproxyv1-address": "hardhat run scripts/print-dapp-specific-api3readerproxyv1-address.js --network $NETWORK",
"print:supported-chains": "node scripts/print-supported-chains.js",
"read-data-feed": "hardhat run scripts/read-data-feed.js --network $NETWORK",
"test": "hardhat test",
"update-proxy": "hardhat run scripts/update-proxy.js --network $NETWORK"
},
"devDependencies": {
"@api3/contracts": "^16.3.0",
"@api3/dapi-management": "^2.11.0",
"@api3/eslint-plugin-commons": "^3.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@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.4.7",
"eslint": "^8.57.1",
"hardhat": "^2.22.17",
"hardhat-deploy": "^0.14.0",
"hardhat-gas-reporter": "^2.2.2",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.4",
"solidity-coverage": "^0.8.14",
"ts-node": ">=10.9.2",
"typechain": "^8.3.2",
"typescript": ">=5.7.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6"
}
}